diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-26 12:38:42 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-26 12:38:42 +0000 |
| commit | a7876462ee670109504a93d32e8345a370d75fa5 (patch) | |
| tree | 555ae9ae4a52b49256d65a311a3aef3d35c1e1e3 | |
| parent | feat(ts_ls): add :LspTypescriptSourceAction command #3780 (diff) | |
| download | nvim-lspconfig-a7876462ee670109504a93d32e8345a370d75fa5.tar nvim-lspconfig-a7876462ee670109504a93d32e8345a370d75fa5.tar.gz nvim-lspconfig-a7876462ee670109504a93d32e8345a370d75fa5.tar.bz2 nvim-lspconfig-a7876462ee670109504a93d32e8345a370d75fa5.tar.lz nvim-lspconfig-a7876462ee670109504a93d32e8345a370d75fa5.tar.xz nvim-lspconfig-a7876462ee670109504a93d32e8345a370d75fa5.tar.zst nvim-lspconfig-a7876462ee670109504a93d32e8345a370d75fa5.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 3 | ||||
| -rw-r--r-- | doc/configs.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 60736bdb..79aa6426 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -11475,6 +11475,8 @@ Here's an example that disables type checking in JavaScript files. } ``` +Source actions such as organizing imports and removing unused code are available via `:LspTypescriptSourceAction`. + ### Vue support As of 2.0.0, Volar no longer supports TypeScript itself. Instead, a plugin @@ -11538,6 +11540,7 @@ Default config: hostInfo = "neovim" } ``` +- `on_attach` source (use "gF" to open): [../lsp/ts_ls.lua:71](../lsp/ts_ls.lua#L71) - `root_markers` : ```lua { "tsconfig.json", "jsconfig.json", "package.json", ".git" } diff --git a/doc/configs.txt b/doc/configs.txt index 4143bc4e..e9bf9b6c 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -10830,6 +10830,8 @@ Here's an example that disables type checking in JavaScript files. } ``` +Source actions such as organizing imports and removing unused code are available via `:LspTypescriptSourceAction`. + ### Vue support As of 2.0.0, Volar no longer supports TypeScript itself. Instead, a plugin @@ -10892,6 +10894,7 @@ Default config: hostInfo = "neovim" } ``` +- `on_attach` source (use "gF" to open): [../lsp/ts_ls.lua:71](../lsp/ts_ls.lua#L71) - `root_markers` : ```lua { "tsconfig.json", "jsconfig.json", "package.json", ".git" } |
