aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* refactor: replace vim.loop with vim.uv #3703v2.0.0Chris Bandy2025-04-1026-46/+37
| | | | | | The former is deprecated in neovim 0.10. Remove the check added in 9b89ba5f158f73779cd58d0bb2783dfb40b28b0e. See: https://github.com/neovim/neovim/blob/v0.10.0/runtime/doc/deprecated.txt#L55
* docs: update configs.mdgithub-actions[bot]2025-04-092-4/+4
| | | | skip-checks: true
* fix(stylelint): update root_file, filetypes #3702kocv592025-04-091-0/+4
|
* docs: update configs.mdgithub-actions[bot]2025-04-082-2/+18
| | | | skip-checks: true
* feat(tinymist): workspace commands #3639Dimitris Dimitropoulos2025-04-081-0/+70
|
* fix(openedge_ls): update configuration #3623Gilles Querret2025-04-073-30/+56
| | | | | * Changed Jar file name * New 'debug' attribute * Send 'init_options' object to language server
* docs: update configs.mdgithub-actions[bot]2025-04-062-0/+66
| | | | skip-checks: true
* feat: bqls #3486Josh Bode2025-04-051-0/+22
|
* docs: update configs.mdgithub-actions[bot]2025-04-062-0/+58
| | | | skip-checks: true
* feat: rpmspec #3568Matěj Cepl2025-04-051-0/+18
| | | | | rpm-spec-language-server is the Language Server for RPM spec files https://github.com/dcermak/rpm-spec-language-server
* refactor: deprecate get_active_client_by_name #3697Justin M. Keyes2025-04-057-17/+16
|
* docs: cleanup #3696Justin M. Keyes2025-04-051-270/+40
| | | | | | Begin referencing `vim.lsp.config()` in some places. Most of the docs can be fully removed after completing the migration to `vim.lsp.config()`.
* refactor: deprecate add_hook_before/after #3695Justin M. Keyes2025-04-052-46/+26
| | | | These are special-purpose functions that should never have been "public".
* refactor: deprecate util.get_lsp_clients #3694Justin M. Keyes2025-04-059-19/+22
|
* refactor: deprecate util functions #3691Justin M. Keyes2025-04-051-32/+34
| | | These are only used by the old health.lua, which only exists for Nvim 0.10 back-compat.
* feat: require Nvim 0.10+ #3692Justin M. Keyes2025-04-053-3/+3
|
* docs: update configs.mdv1.8.0github-actions[bot]2025-04-052-0/+50
| | | | skip-checks: true
* feat: "just" lsp #3655liam2025-04-051-0/+17
|
* docs: update configs.mdgithub-actions[bot]2025-04-052-2/+8
| | | | skip-checks: true
* feat(svelte): command to migrate to svelte 5 #3638Igor Lacerda2025-04-051-0/+19
|
* docs: update configs.mdgithub-actions[bot]2025-04-052-4/+4
| | | | skip-checks: true
* Revert "fix(eslint): find closest ESLint directory to avoid version mismatch ↵Justin M. Keyes2025-04-051-24/+0
| | | | | …" #3689 This reverts commit 93835565a746e252b3342dbab688c22bdea81da7.
* docs: update configs.mdgithub-actions[bot]2025-04-042-4/+4
| | | | skip-checks: true
* fix(eslint): find closest ESLint directory to avoid version mismatch #3686Estacio Pereira2025-04-041-0/+24
|
* docs: update configs.mdgithub-actions[bot]2025-04-022-2/+2
| | | | skip-checks: true
* fix(tblgen): find tablegen_compile_commands.yml #3649Anirudh2025-04-021-1/+12
| | | | | The tblgen_lsp_server doesn't seem to load any specific compilation database server and hence we need to explicitly specify the command-line argument to pick the correct database path.
* docs: update configs.mdgithub-actions[bot]2025-04-022-2/+6
| | | | skip-checks: true
* feat(ada_ls): alire.toml #3667Elie Richa2025-04-021-2/+4
|
* docs: update configs.mdgithub-actions[bot]2025-04-022-2863/+2506
| | | | skip-checks: true
* fix(docgen): :help (vimdoc) format #3683Justin M. Keyes2025-04-023-25/+18
| | | followup to #3675
* docs: update configs.mdgithub-actions[bot]2025-04-022-1436/+1789
| | | | skip-checks: true
* fix(docgen): generate configs.txt in :help (vimdoc) format #3675Daigo Yamashita2025-04-022-18/+54
|
* docs: update configs.mdgithub-actions[bot]2025-04-022-2/+12
| | | | skip-checks: true
* fix(sourcekit): url & dynamic registration for `didChangeWatchedFiles` (#3681)Chris Grieser2025-04-021-1/+6
|
* ci: cancel old jobs on PR updatedundargoc2025-03-302-2/+8
| | | | Closes: https://github.com/neovim/nvim-lspconfig/issues/3669
* docs: update configs.mdgithub-actions[bot]2025-03-292-6/+6
| | | | skip-checks: true
* docs: wgsl-analyzer install instructions #3670G'lek Tarssza2025-03-291-3/+3
|
* docs: update configs.mdgithub-actions[bot]2025-03-292-2/+2
| | | | skip-checks: true
* fix(postgres_lsp): re-enable single file support #3673Michael Manganiello2025-03-291-1/+1
| | | | | | Do not require a `postgrestools.jsonc` file in the root directory for single file support. Fixes #3672.
* fix: ":checkhealth lspconfig" fails on Nvim 0.11 #3668Justin M. Keyes2025-03-271-2/+10
| | | | | | | | | | | | | | | | | | | | | Problem: `:checkhealth lspconfig` fails: E5009: Invalid $VIMRUNTIME: .../share/nvim/runtime Error executing lua: Vim:E21: Cannot make changes, 'modifiable' is off stack traceback: [C]: in function 'append' .../share/nvim/runtime/lua/vim/health.lua:443: in function '_check' `:checkhealth` cannot call itself recursively. And even if it did work, it would show a duplicate report since `:checkhealth vim.lsp` will also be part of the report. Solution: On Nvim 0.11, - show a deprecation message if invoked directly. - show a softer message if invoked as part of the "full report". fix #3664
* docs: update configs.mdgithub-actions[bot]2025-03-272-2/+2
| | | | skip-checks: true
* fix(golangci-lint): disable stats in json output (#3665)Andrej Kenda2025-03-271-1/+1
|
* docs: update configs.mdgithub-actions[bot]2025-03-272-0/+50
| | | | skip-checks: true
* feat: vectorcode-server (#3660)David2025-03-271-0/+15
|
* feat: alias :LspInfo to `:checkhealth vim.lsp` #3663Justin M. Keyes2025-03-264-13/+12
| | | | | | | | | Problem: `:checkhealth lspconfig` has no benefits vs `:checkhealth vim.lsp`. Solution: - on Nvim 0.11+, `:LspInfo` is an alias to `:checkhealth vim.lsp` instead of `:checkhealth lspconfig`. - `lua/lspconfig/health.lua` will be removed in a few months.
* docs: update configs.mdgithub-actions[bot]2025-03-262-2/+2
| | | | skip-checks: true
* fix(golangci-lint): typo in command argument #3662Olzhas Akhmetkhan2025-03-261-1/+1
|
* docs: update configs.mdgithub-actions[bot]2025-03-262-2/+2
| | | | skip-checks: true
* fix: golangci-lint v2 json output #3661Olzhas Akhmetkhan2025-03-261-1/+1
|
* fix(biome): improved biomejs detection (#3650)Maksim Terpilovskii2025-03-251-1/+5
|