diff options
| author | github-actions <github-actions@github.com> | 2022-04-17 16:57:52 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-04-17 16:57:52 +0000 |
| commit | 6300fe92262b1942450edf2652bb2caac6ff0d24 (patch) | |
| tree | 89b0fb319f361cabc7b2f1d4be834db1bd84e477 | |
| parent | feat(vimls): enable neovim support by default (#1844) (diff) | |
| download | nvim-lspconfig-6300fe92262b1942450edf2652bb2caac6ff0d24.tar nvim-lspconfig-6300fe92262b1942450edf2652bb2caac6ff0d24.tar.gz nvim-lspconfig-6300fe92262b1942450edf2652bb2caac6ff0d24.tar.bz2 nvim-lspconfig-6300fe92262b1942450edf2652bb2caac6ff0d24.tar.lz nvim-lspconfig-6300fe92262b1942450edf2652bb2caac6ff0d24.tar.xz nvim-lspconfig-6300fe92262b1942450edf2652bb2caac6ff0d24.tar.zst nvim-lspconfig-6300fe92262b1942450edf2652bb2caac6ff0d24.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 5 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 38348ae1..939d7b8b 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -6163,6 +6163,7 @@ require'lspconfig'.vimls.setup{} projectRootPatterns = { "runtime", "nvim", ".git", "autoload", "plugin" }, runtimepath = true }, + isNeovim = true, iskeyword = "@,48-57,_,192-255,-#", runtimepath = "", suggest = { @@ -6176,6 +6177,10 @@ require'lspconfig'.vimls.setup{} ```lua see source file ``` + - `single_file_support` : + ```lua + true + ``` ## vls diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 38348ae1..939d7b8b 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -6163,6 +6163,7 @@ require'lspconfig'.vimls.setup{} projectRootPatterns = { "runtime", "nvim", ".git", "autoload", "plugin" }, runtimepath = true }, + isNeovim = true, iskeyword = "@,48-57,_,192-255,-#", runtimepath = "", suggest = { @@ -6176,6 +6177,10 @@ require'lspconfig'.vimls.setup{} ```lua see source file ``` + - `single_file_support` : + ```lua + true + ``` ## vls |
