aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-01-04 11:52:36 -0800
committerGitHub <noreply@github.com>2021-01-04 11:52:36 -0800
commitc66246705a8180c55eec5d97617d20e6291e21db (patch)
tree12c1432e552a035c38cbbc6d6ed6e0690c8228cb
parentMerge pull request #528 from mjlbach/improve_ccls_documentation (diff)
parent[docgen] Update README.md (diff)
downloadnvim-lspconfig-c66246705a8180c55eec5d97617d20e6291e21db.tar
nvim-lspconfig-c66246705a8180c55eec5d97617d20e6291e21db.tar.gz
nvim-lspconfig-c66246705a8180c55eec5d97617d20e6291e21db.tar.bz2
nvim-lspconfig-c66246705a8180c55eec5d97617d20e6291e21db.tar.lz
nvim-lspconfig-c66246705a8180c55eec5d97617d20e6291e21db.tar.xz
nvim-lspconfig-c66246705a8180c55eec5d97617d20e6291e21db.tar.zst
nvim-lspconfig-c66246705a8180c55eec5d97617d20e6291e21db.zip
Merge pull request #536 from mjlbach/sumneko_typo
sumneko: fix typo
-rw-r--r--CONFIG.md10
-rw-r--r--lua/lspconfig/sumneko_lua.lua2
2 files changed, 6 insertions, 6 deletions
diff --git a/CONFIG.md b/CONFIG.md
index 928d873c..dfcae736 100644
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -1031,17 +1031,17 @@ This server accepts configuration via the `settings` key.
Default: `"kotlin"`
- The programming language to use for Android apps when creating new projects using the \'Flutter\: New Project\' command\.
+ The programming language to use for Android apps when creating new projects using the \'Flutter\: New Application Project\' command\.
- **`dart.flutterCreateIOSLanguage`**: `enum { "objc", "swift" }`
Default: `"swift"`
- The programming language to use for iOS apps when creating new projects using the \'Flutter\: New Project\' command\.
+ The programming language to use for iOS apps when creating new projects using the \'Flutter\: New Application Project\' command\.
- **`dart.flutterCreateOffline`**: `boolean`
- Whether to use offline mode when creating new projects with the \'Flutter\: New Project\' command\.
+ Whether to use offline mode when creating new projects with the \'Flutter\: New Application Project\' command\.
- **`dart.flutterCreateOrganization`**: `null|string`
@@ -4444,7 +4444,7 @@ This server accepts configuration via the `settings` key.
null
-- **`rust-analyzer.serverPath`**: `null|string`
+- **`rust-analyzer.server.path`**: `null|string`
Default: `vim.NIL`
@@ -4753,7 +4753,7 @@ end
-- set the path to the sumneko installation; if you previously installed via the now deprecated :LspInstall, use
local sumneko_root_path = vim.fn.stdpath('cache')..'/lspconfig/sumneko_lua/lua-language-server'
-local sumneko_binary = sumneko_root_path.."/bin/"..system_name.."/lua-language-serve
+local sumneko_binary = sumneko_root_path.."/bin/"..system_name.."/lua-language-server
require'lspconfig'.sumneko_lua.setup {
cmd = {sumneko_binary, "-E", sumneko_root_path .. "/main.lua"};
diff --git a/lua/lspconfig/sumneko_lua.lua b/lua/lspconfig/sumneko_lua.lua
index bb712a7d..dcfb68c7 100644
--- a/lua/lspconfig/sumneko_lua.lua
+++ b/lua/lspconfig/sumneko_lua.lua
@@ -36,7 +36,7 @@ end
-- set the path to the sumneko installation; if you previously installed via the now deprecated :LspInstall, use
local sumneko_root_path = vim.fn.stdpath('cache')..'/lspconfig/sumneko_lua/lua-language-server'
-local sumneko_binary = sumneko_root_path.."/bin/"..system_name.."/lua-language-serve
+local sumneko_binary = sumneko_root_path.."/bin/"..system_name.."/lua-language-server
require'lspconfig'.sumneko_lua.setup {
cmd = {sumneko_binary, "-E", sumneko_root_path .. "/main.lua"};