diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-05-18 23:53:02 +0900 |
|---|---|---|
| committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-05-18 23:53:02 +0900 |
| commit | de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2 (patch) | |
| tree | e40f7d29074861e4911dc00b13a53480b3d01c32 | |
| parent | docgen: use package.json url instead of VSCode extension name (diff) | |
| download | nvim-lspconfig-de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2.tar nvim-lspconfig-de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2.tar.gz nvim-lspconfig-de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2.tar.bz2 nvim-lspconfig-de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2.tar.lz nvim-lspconfig-de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2.tar.xz nvim-lspconfig-de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2.tar.zst nvim-lspconfig-de8e1923ea7b5a3fb9ee26d7975d8c8abb3b10b2.zip | |
[docgen] Update README.md
| -rw-r--r-- | README.md | 48 |
1 files changed, 43 insertions, 5 deletions
@@ -970,11 +970,11 @@ This server accepts configuration via the `settings` key. - **`dart.debugExternalLibraries`**: `boolean` - Whether to mark external pub package libraries as debuggable, enabling stepping into them while debugging. + Whether to mark external pub package libraries (including package:flutter) as debuggable, enabling stepping into them while debugging. - **`dart.debugSdkLibraries`**: `boolean` - Whether to mark SDK libraries as debuggable, enabling stepping into them while debugging. + Whether to mark Dart SDK libraries (dart:*) as debuggable, enabling stepping into them while debugging. - **`dart.devToolsLogFile`**: `null|string` @@ -1892,6 +1892,14 @@ require'nvim_lsp'.html.setup{} capabilities = { offsetEncoding = { "utf-8", "utf-16" }, textDocument = { + codeAction = { + codeActionLiteralSupport = { + codeActionKind = { + valueSet = {} + } + }, + dynamicRegistration = false + }, completion = { completionItem = { commitCharactersSupport = false, @@ -2053,6 +2061,14 @@ require'nvim_lsp'.jsonls.setup{} capabilities = { offsetEncoding = { "utf-8", "utf-16" }, textDocument = { + codeAction = { + codeActionLiteralSupport = { + codeActionKind = { + valueSet = {} + } + }, + dynamicRegistration = false + }, completion = { completionItem = { commitCharactersSupport = false, @@ -2314,8 +2330,6 @@ This server accepts configuration via the `settings` key. - **`julia.useCustomSysimage`**: `boolean` - Default: `"false"` - Use an existing custom sysimage when starting the REPL - **`julia.usePlotPane`**: `boolean` @@ -2983,6 +2997,14 @@ require'nvim_lsp'.purescriptls.setup{} capabilities = { offsetEncoding = { "utf-8", "utf-16" }, textDocument = { + codeAction = { + codeActionLiteralSupport = { + codeActionKind = { + valueSet = {} + } + }, + dynamicRegistration = false + }, completion = { completionItem = { commitCharactersSupport = false, @@ -3908,6 +3930,14 @@ require'nvim_lsp'.rust_analyzer.setup{} capabilities = { offsetEncoding = { "utf-8", "utf-16" }, textDocument = { + codeAction = { + codeActionLiteralSupport = { + codeActionKind = { + valueSet = {} + } + }, + dynamicRegistration = false + }, completion = { completionItem = { commitCharactersSupport = false, @@ -4004,7 +4034,7 @@ This server accepts configuration via the `settings` key. Default: `"bundle"` - Path to the bundle executable, defaults to 'bundle' + Path to the bundle executable, defaults to 'bundle'. Needs to be an absolute path for the 'bundle' exec/shim - **`solargraph.checkGemVersion`**: `enum { true, false }` @@ -4777,6 +4807,14 @@ require'nvim_lsp'.yamlls.setup{} capabilities = { offsetEncoding = { "utf-8", "utf-16" }, textDocument = { + codeAction = { + codeActionLiteralSupport = { + codeActionKind = { + valueSet = {} + } + }, + dynamicRegistration = false + }, completion = { completionItem = { commitCharactersSupport = false, |
