diff options
| -rw-r--r-- | README.md | 68 |
1 files changed, 51 insertions, 17 deletions
@@ -970,14 +970,6 @@ This server accepts configuration via the `settings` key. Whether to consider files ending \'\_test\.dart\' that are outside of the test folder as tests\. This should be enabled if you put tests inside the \'lib\' folder of your Flutter application so they will be run with \'flutter test\' and not \'flutter run\'\. -- **`dart.analysisExcludedFolders`**: `array` - - Default: `{}` - - Array items: `{type = "string"}` - - An array of paths to be excluded from Dart analysis\. This option should usually be set at the Workspace level\. - - **`dart.analysisServerFolding`**: `boolean` Default: `true` @@ -1107,6 +1099,12 @@ This server accepts configuration via the `settings` key. An array of glob patterns that should be excluded for formatting\. The pattern is matched against the absolute path of the file\. Use \*\*\/test\/\*\* to skip formatting for all test folders\. +- **`dart.embedDevTools`**: `boolean` + + Default: `true` + + Whether to load DevTools embedded inside VS Code\. + - **`dart.enableCompletionCommitCharacters`**: `boolean` Whether to automatically commit the selected completion item when pressing certain keys such as \. \, \( and \[\. @@ -1319,10 +1317,6 @@ This server accepts configuration via the `settings` key. Whether to register Pub Build Runner tasks with VS Code\. -- **`dart.previewEmbeddedDevTools`**: `boolean` - - EXPERIMENTAL\: Whether to load DevTools embedded inside VS Code\. - - **`dart.previewFlutterUiGuides`**: `boolean` Whether to enable the Flutter UI Guides preview\. @@ -1451,6 +1445,12 @@ This server accepts configuration via the `settings` key. The path to a log file for communication between Dart Code and the VM service\. This is useful when trying to diagnose issues with debugging such as missed breakpoints\. Use \$\{name\} in the log file name to prevent concurrent debug sessions overwriting each others logs\. +- **`dart.warnWhenEditingFilesInPubCache`**: `boolean` + + Default: `true` + + Whether to show a warning when modifying files in Pub\'s cache folder\. + - **`dart.warnWhenEditingFilesOutsideWorkspace`**: `boolean` Default: `true` @@ -2006,11 +2006,11 @@ This server accepts configuration via the `settings` key. When adding an import\, use the formatter on the result -- **`haskell.formattingProvider`**: `enum { "brittany", "floskell", "ormolu", "stylish-haskell", "none" }` +- **`haskell.formattingProvider`**: `enum { "brittany", "floskell", "fourmolu", "ormolu", "stylish-haskell", "none" }` Default: `"ormolu"` - The tool to use for formatting requests + The formatter to use when formatting a document or range - **`haskell.hlintOn`**: `boolean` @@ -2405,6 +2405,12 @@ This server accepts configuration via the `settings` key. Check that all declared arguments are used within the function body\. +- **`julia.packageServer`**: `string` + + Default: `""` + + Julia package server\. Set\'s the \`JULIA\_PKG\_SERVER\` environment variable \*before\* starting a Julia process\. Leave this empty to use the systemwide default\. Requires a restart of the Julia process\. + - **`julia.trace.server`**: `enum { "off", "messages", "verbose" }` Default: `"off"` @@ -2782,7 +2788,7 @@ This server accepts configuration via the `settings` key. - **`metals.serverVersion`**: `string` - Default: `"0.9.2"` + Default: `"0.9.3"` null @@ -3568,7 +3574,7 @@ This server accepts configuration via the `settings` key. - **`rust-client.disableRustup`**: `boolean` - Disable usage of rustup and use rustc\/rls from PATH\. + Disable usage of rustup and use rustc\/rls\/rust\-analyzer from PATH\. - **`rust-client.enableMultiProjectSetup`**: `boolean|null` @@ -3922,6 +3928,12 @@ This server accepts configuration via the `settings` key. null +- **`rust-analyzer.checkOnSave.target`**: `null|string` + + Default: `vim.NIL` + + Check for a specific target\. Defaults to \`rust\-analyzer\.cargo\.target\`\. + - **`rust-analyzer.completion.addCallArgumentSnippets`**: `boolean` Default: `true` @@ -3963,6 +3975,14 @@ This server accepts configuration via the `settings` key. Optional source file mappings passed to the debug engine\. +- **`rust-analyzer.diagnostics.disabled`**: `array` + + Default: `{}` + + Array items: `{type = "string"}` + + List of rust\-analyzer diagnostics to disable + - **`rust-analyzer.diagnostics.enable`**: `boolean` Default: `true` @@ -4550,6 +4570,14 @@ You can use [released binary](https://github.com/juliosueiras/terraform-lsp/rele This server accepts configuration via the `settings` key. <details><summary>Available settings:</summary> +- **`terraform-ls.excludeRootModules`**: `array` + + Default: `{}` + + Array items: `{type = "string"}` + + Per\-workspace list of module directories for the language server to exclude + - **`terraform-ls.rootModules`**: `array` Default: `{}` @@ -4755,7 +4783,7 @@ This server accepts configuration via the `settings` key. - **`vetur.experimental.templateInterpolationService`**: `boolean` - Enable template interpolation service that offers diagnostics \/ hover \/ definition \/ references\. + Enable template interpolation service that offers hover \/ definition \/ references in Vue interpolations\. - **`vetur.format.defaultFormatter.css`**: `enum { "none", "prettier" }` @@ -4863,6 +4891,12 @@ This server accepts configuration via the `settings` key. Use dependencies from workspace\. Currently only for TypeScript\. +- **`vetur.validation.interpolation`**: `boolean` + + Default: `true` + + Validate interpolations in \<template\> region using TypeScript language service + - **`vetur.validation.script`**: `boolean` Default: `true` |
