aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* docs: update server_configurations.mdv0.1.9github-actions[bot]2024-09-022-2/+2
| | | | skip-checks: true
* docs(wgsl-analyzer): add missing close paren (#3290)Oughie2024-09-021-1/+1
| | | Fix the typo by adding the missing close paren.
* docs: update server_configurations.mdgithub-actions[bot]2024-08-302-6/+6
| | | | skip-checks: true
* fix(bazelrc-lsp): rename bazelrc-lsp to bazelrc_lsp (#3287)Johan2024-08-301-0/+0
| | | | | Using bazelrc-lsp as the name makes it harder to import the module in Lua as it requires the dash to be escaped. This commit renames the lsp to bazelrc_lsp instead.
* docs: update server_configurations.mdgithub-actions[bot]2024-08-292-0/+66
| | | | skip-checks: true
* feat: add snakeskin_ls server configuration (#3286)Maxim Sinelnikov2024-08-291-0/+19
| | | | | | | | | * feat: add snakeskin_ls server configuration * fix: add npx for command --------- Co-authored-by: Maksim Sinelnikov <sinelnikovweb@yandex-team.ru>
* docs: update server_configurations.mdgithub-actions[bot]2024-08-272-78/+12
| | | | skip-checks: true
* fix: tea-leaves was renamed and replaced teal-language-server (#3285)Steve Vermeulen2024-08-272-37/+8
|
* docs: update server_configurations.mdgithub-actions[bot]2024-08-262-14/+40
| | | | skip-checks: true
* feat: improve default haxe_language_server init_options (#3284)tobil4sk2024-08-261-8/+35
| | | | | | | | | | | | | | | | | | | | | * feat: add '.git' as root pattern for haxe_language_server * feat: use existing hxml for haxe ls configuration Previously, it would detect the root dir by matching with "*.hxml", however, it would use "build.hxml" as the default `displayArguments` even though it may not exist. This could cause the error: ``` haxe_language_server: -32603: Error: Could not process argument build.hxml (file not found) Invalid character: ``` Now it will use the first ".hxml" file that is found in the project. It will only do this if no `displayArguments` value has been set in the `setup()` call, so it will still respect user set values. If no hxml file is found, then it uses empty `displayArguments`, which is still better than a broken configuration.
* docs: update server_configurations.mdgithub-actions[bot]2024-08-232-4/+60
| | | | skip-checks: true
* fix(rescripls): enable typechecking, improve doc (#3281)Buck Evan2024-08-231-1/+25
| | | | | | | | I was very confused to find that I got no typechecking by default, since ReScript is meant to be a very-strongly-typed language. The intent seems to be to use the "askToStartBuild" option to start an external build, which integrates with the lsp for typing, but that prompt is much too buggy, and the incremental typing (enabled in this PR) works well for me.
* docs: update server_configurations.mdgithub-actions[bot]2024-08-232-2/+2
| | | | skip-checks: true
* fix(r-language-server): use `--no-echo` instead of `--slave` (#3280)mutlusun2024-08-231-1/+1
| | | | | | | | | Starting from R version 4.0.0, the command line option `--slave` were renamed to `--no-echo`. See the relevant news for 4.0.0: https://cran.r-project.org/bin/windows/base/old/4.0.0/NEWS.R-4.0.0.html and the corresponding commit: https://github.com/wch/r-source/commit/f1ff49e74593341c74c20de9517f31a22c8bcb04
* docs: update server_configurations.mdgithub-actions[bot]2024-08-222-2/+2
| | | | skip-checks: true
* fix(scheme-langserver): defaultly enable log/out/multi-thread and disable ↵ufo52609874232024-08-221-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | type-inference (#3278) * feat: add scheme-langserver support * fix * fix: format with stylua * fix: fixup! * fix: format with stylua * fix(scheme-langserver): defaultly enable log/out/threads and disable type-inference * fix(scheme-langserver):remove out option * fix(scheme-langserver):replace double quote to single quote * fix(scheme-langserver): remove bin_name --------- Co-authored-by: Raphael <glephunter@gmail.com>
* docs: update server_configurations.mdgithub-actions[bot]2024-08-222-0/+14
| | | | skip-checks: true
* fix(als): deprecate als in favour of a separate plugin (#3277)Tama McGlinn2024-08-221-0/+4
| | | | | | | | | To move towards the goal of having lsp configs decentralised and lower the maintenance burden on current maintainers, as requested by @glepnir, @mjlbach and @justinmk See https://github.com/neovim/nvim-lspconfig/pull/1693 and https://github.com/neovim/nvim-lspconfig/issues/1683 and https://github.com/neovim/nvim-lspconfig/pull/3275#issuecomment-2301318994
* fix(texlab): do not pass buf as parameter (#3276)Dimitris Dimitropoulos2024-08-211-48/+26
| | | | | | | | | | | | | * fix(texlab): do not pass buf as parameter Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> * fix(texlab): use make_params lsp util Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> --------- Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com>
* feat(texlab): give the find environments command a ui wrapper (#3263)Dimitris Dimitropoulos2024-08-211-8/+18
| | | | | | | | | | | * feat(texlab): give the find environments command a ui wrapper * fix(texlab): use make_params util function Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> --------- Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com>
* docs: update server_configurations.mdgithub-actions[bot]2024-08-212-0/+2
| | | | skip-checks: true
* feat(clangd): add symbolInfo support (#3274)Dimitris Dimitropoulos2024-08-211-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feat(clangd): add symbolInfo support Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> * fix(clangd): use make_position_params util function Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> * fix(clangd): no need to use a parameter Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> * fix(clangd): remove parameter from command Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> * fix(clangd): check if client supports method Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> * fix(clangd): use client request instead of buf_request Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com> --------- Signed-off-by: Dimitris Dimitropoulos <dimitris.dimitropoulos00@gmail.com>
* docs: update server_configurations.mdgithub-actions[bot]2024-08-212-10/+2
| | | | skip-checks: true
* fix: remove invalid filetypes containing wildcards from `typos_lsp` and ↵WieeRd2024-08-212-2/+1
| | | | | | | `hyprls` (#3273) * fix(typos_lsp): remove unnecessary `*` filetype * fix(hyprls): remove invalid filetypes containing wildcards
* test(ci): change to luajit-openresty (#3272)glepnir2024-08-201-1/+1
| | | | | Problem: LuaJIT.org has stopped publishing release tarballs on their website. Solution: use luajit-openresty instead of.
* docs: update server_configurations.mdgithub-actions[bot]2024-08-202-0/+76
| | | | skip-checks: true
* feat: add tea-leaves support (#3271)Steve Vermeulen2024-08-201-0/+31
|
* docs: update server_configurations.mdgithub-actions[bot]2024-08-192-2/+2
| | | | skip-checks: true
* docs: clarify snippet support in jsonls.lua (#3270)Anton Kastritskii2024-08-191-1/+1
|
* docs: update server_configurations.mdgithub-actions[bot]2024-08-162-2/+2
| | | | skip-checks: true
* Revert "feat: ruby_lsp works inside eruby files (#3266)" (#3269)Adam Daniels2024-08-161-1/+1
| | | This reverts commit 4cd29ab1b326f5b04f4b982fae05934ac64c779b.
* docs: update server_configurations.mdgithub-actions[bot]2024-08-152-2/+2
| | | | skip-checks: true
* feat(htmx): add more filetypes (#3268)Nicholas Ciechanowski2024-08-151-1/+48
|
* fix(taplo): simplify root detection now that single file mode is supported ↵Micah Halter2024-08-141-3/+1
| | | | (#3267)
* docs: update server_configurations.mdgithub-actions[bot]2024-08-132-2/+2
| | | | skip-checks: true
* feat: ruby_lsp works inside eruby files (#3266)Adam Daniels2024-08-131-1/+1
| | | Since 0.17.5, Ruby LSP has supported running inside ERB files.
* docs: update server_configurations.mdgithub-actions[bot]2024-08-102-4/+4
| | | | skip-checks: true
* fix(mesonlsp): update root directory pattern (#3265)George Thomadakis2024-08-102-4/+4
| | | | | | | Add pattern for meson.build files in the 'root_pattern' functions of the 'default_config' and 'doc' tables for the 'mesonlsp' and 'swift_mesonls' servers. Signed-off-by: George Thomadakis <gthomadakis@protonmail.com>
* docs: update server_configurations.mdgithub-actions[bot]2024-08-072-0/+66
| | | | skip-checks: true
* feat: add tvm_ffi_navigator server (#3261)Anirudh2024-08-071-0/+19
| | | | | Add the [TVM FFI navigator](https://github.com/tqchen/ffi-navigator) server configuration, which is used within the TVM project to jump to C++ definitions from python and vice versa
* docs: update server_configurations.mdgithub-actions[bot]2024-08-062-4/+4
| | | | skip-checks: true
* docs(fortls): update linke of fortls (#3258)Leon2024-08-061-2/+2
|
* docs: update server_configurations.mdgithub-actions[bot]2024-08-052-0/+2
| | | | skip-checks: true
* feat: implement ZkList command for zk (#3257)Hugo2024-08-051-0/+31
| | | | Surfaces the `zk.list` LSP command in the same way as `zk.new` and `zk.index`.
* fix(texlab): use notify instead of print (#3256)Thibault de Villèle2024-08-021-4/+10
| | | | | | | | | | | | | | * feat(texlab): change all print() to vim.notify() Some texlab-specific functions were using `print`, some were using `vim.notify`. Changed all uses of `print` to `vim.notify` with levels: - `vim.log.levels.INFO` for `build` and `forwardSeach` LSP methods, - `vim.log.levels.ERROR` when the `texlab` client cannot be found. * fix(lint): integrate linter changes of #3256 --------- Co-authored-by: Thibault de Villèle <>
* docs: update server_configurations.mdgithub-actions[bot]2024-08-022-0/+92
| | | | skip-checks: true
* feat: add superhtml support (#3245)Elijah Sauder2024-08-021-0/+32
| | | Co-authored-by: glepnir <glephunter@gmail.com>
* docs: update server_configurations.mdgithub-actions[bot]2024-08-012-20/+0
| | | | skip-checks: true
* fix(tailwindcss): removed deprecated code form tailwindcss (#3254)Ahmad bin Marakkar2024-08-011-7/+0
|
* docs: update server_configurations.mdgithub-actions[bot]2024-07-292-0/+62
| | | | skip-checks: true