diff options
| author | Github Actions <actions@github> | 2021-03-24 15:24:09 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2021-03-24 15:24:09 +0000 |
| commit | f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf (patch) | |
| tree | 62d976a0c22d77daa9f8a2973a9eef6035672261 | |
| parent | Merge pull request #793 from mhinz/sumneko-disable-telemetry (diff) | |
| download | nvim-lspconfig-f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf.tar nvim-lspconfig-f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf.tar.gz nvim-lspconfig-f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf.tar.bz2 nvim-lspconfig-f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf.tar.lz nvim-lspconfig-f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf.tar.xz nvim-lspconfig-f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf.tar.zst nvim-lspconfig-f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf.zip | |
[docgen] Update CONFIG.md
skip-checks: true
| -rw-r--r-- | CONFIG.md | 27 |
1 files changed, 25 insertions, 2 deletions
@@ -532,7 +532,7 @@ This server accepts configuration via the `settings` key. Default: `true` - Whether to include symbols that have not been imported in the code completion list and automatically insert the required import when selecting them\. + Whether to include symbols that have not been imported in the code completion list and automatically insert the required import when selecting them \(requires restart\)\. - **`dart.buildRunnerAdditionalArgs`**: `array` @@ -778,6 +778,12 @@ This server accepts configuration via the `settings` key. Whether to set newly connected devices as the current device in Flutter projects\. +- **`dart.flutterShowWebServerDevice`**: `enum { "remote", "always" }` + + Default: `"remote"` + + null + - **`dart.flutterStructuredErrors`**: `boolean` Default: `true` @@ -828,6 +834,12 @@ This server accepts configuration via the `settings` key. The maximum length of a line of code\. This is used by the document formatter\. +- **`dart.lspSnippetTextEdits`**: `boolean` + + Default: `true` + + null + - **`dart.maxLogLineLength`**: `number` Default: `2000` @@ -4253,7 +4265,7 @@ This server accepts configuration via the `settings` key. - **`rust-analyzer.inlayHints.maxLength`**: `null|integer` - Default: `vim.NIL` + Default: `25` null @@ -4749,6 +4761,10 @@ require'lspconfig'.sumneko_lua.setup { [vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true, }, }, + -- Do not send telemetry data containing a randomized but unique identifier + telemetry = { + enable = false, + }, }, }, } @@ -5030,6 +5046,13 @@ require'lspconfig'.sumneko_lua.setup{} filetypes = { "lua" } log_level = 2 root_dir = root_pattern(".git") or bufdir + settings = { + Lua = { + telemetry = { + enable = false + } + } + } ``` ## svelte |
