diff options
| author | Github Actions <actions@github> | 2020-06-02 14:35:59 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2020-06-02 14:35:59 +0000 |
| commit | a7fdf268b1c51f6395900e437060728701aa8b77 (patch) | |
| tree | df143586f2e5357ca7a0f1a0431e88efc2cfc2e3 | |
| parent | Merge pull request #259 from wingyplus/elixirls-fix-typo (diff) | |
| download | nvim-lspconfig-a7fdf268b1c51f6395900e437060728701aa8b77.tar nvim-lspconfig-a7fdf268b1c51f6395900e437060728701aa8b77.tar.gz nvim-lspconfig-a7fdf268b1c51f6395900e437060728701aa8b77.tar.bz2 nvim-lspconfig-a7fdf268b1c51f6395900e437060728701aa8b77.tar.lz nvim-lspconfig-a7fdf268b1c51f6395900e437060728701aa8b77.tar.xz nvim-lspconfig-a7fdf268b1c51f6395900e437060728701aa8b77.tar.zst nvim-lspconfig-a7fdf268b1c51f6395900e437060728701aa8b77.zip | |
[docgen] Update README.md
skip-checks: true
| -rw-r--r-- | README.md | 32 |
1 files changed, 21 insertions, 11 deletions
@@ -1244,10 +1244,6 @@ This server accepts configuration via the `settings` key. Whether to enable new behaviour for code completion to include @required arguments as placeholders (when using dart.insertArgumentPlaceholders). -- **`dart.previewUpdateImportsOnRename`**: `boolean` - - EXPERIMENTAL: Whether to automatically update imports when moving/renaming files. Currently only works for single-file moves/renames. - - **`dart.promptToGetPackages`**: `boolean` Default: `true` @@ -1308,13 +1304,15 @@ This server accepts configuration via the `settings` key. - **`dart.showIgnoreQuickFixes`**: `boolean` + Default: `true` + Whether to show quick fixes for ignoring hints and lints. - **`dart.showMainCodeLens`**: `boolean` Default: `true` - Whether to show CodeLens actions in the editor for quick running/debugging scripts with main methods. + Whether to show CodeLens actions in the editor for quick running/debugging scripts with main functions. - **`dart.showTestCodeLens`**: `boolean` @@ -1332,6 +1330,12 @@ This server accepts configuration via the `settings` key. Whether to automatically trigger signature help when pressing keys such as , and (. +- **`dart.updateImportsOnRename`**: `boolean` + + Default: `true` + + Whether to automatically update imports when moving/renaming files. Currently only works for single-file moves/renames. + - **`dart.useKnownChromeOSPorts`**: `boolean` Default: `true` @@ -1438,7 +1442,7 @@ This language server does not provide a global binary, but must be installed man Fetching the elixir-ls repository from GitHub, compiling it and then installing it. ```lua -require'nvim_lsp'.elixirLS.setup{ +require'nvim_lsp'.elixirls.setup{ -- Unix cmd = { "path/to/language_server.sh" }; -- Windows @@ -1988,7 +1992,7 @@ require'nvim_lsp'.html.setup{} deprecatedSupport = false, documentationFormat = { "markdown", "plaintext" }, preselectSupport = false, - snippetSupport = false + snippetSupport = true }, completionItemKind = { valueSet = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 } @@ -2157,7 +2161,7 @@ require'nvim_lsp'.jsonls.setup{} deprecatedSupport = false, documentationFormat = { "markdown", "plaintext" }, preselectSupport = false, - snippetSupport = false + snippetSupport = true }, completionItemKind = { valueSet = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 } @@ -3093,7 +3097,7 @@ require'nvim_lsp'.purescriptls.setup{} deprecatedSupport = false, documentationFormat = { "markdown", "plaintext" }, preselectSupport = false, - snippetSupport = false + snippetSupport = true }, completionItemKind = { valueSet = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 } @@ -3205,6 +3209,12 @@ This server accepts configuration via the `settings` key. Enable fuzzy when requesting autocomplete. +- **`pyls.plugins.jedi_completion.include_class_objects`**: `boolean` + + Default: `true` + + Adds class objects as a separate completion item. + - **`pyls.plugins.jedi_completion.include_params`**: `boolean` Default: `true` @@ -4085,7 +4095,7 @@ require'nvim_lsp'.rust_analyzer.setup{} deprecatedSupport = false, documentationFormat = { "markdown", "plaintext" }, preselectSupport = false, - snippetSupport = false + snippetSupport = true }, completionItemKind = { valueSet = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 } @@ -4962,7 +4972,7 @@ require'nvim_lsp'.yamlls.setup{} deprecatedSupport = false, documentationFormat = { "markdown", "plaintext" }, preselectSupport = false, - snippetSupport = false + snippetSupport = true }, completionItemKind = { valueSet = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 } |
