aboutsummaryrefslogtreecommitdiffstats
path: root/doc/configs.md
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-12-03 17:12:01 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-12-03 17:12:01 +0000
commit7757d54716b26280b1b1785d89364a016a29c445 (patch)
tree0f7d3f2eae05d7fbcb9b12ce92ceabac46e9451a /doc/configs.md
parentfeat(ts_ls): add LspTypescriptGoToSourceDefinition command #4225 (diff)
downloadnvim-lspconfig-7757d54716b26280b1b1785d89364a016a29c445.tar
nvim-lspconfig-7757d54716b26280b1b1785d89364a016a29c445.tar.gz
nvim-lspconfig-7757d54716b26280b1b1785d89364a016a29c445.tar.bz2
nvim-lspconfig-7757d54716b26280b1b1785d89364a016a29c445.tar.lz
nvim-lspconfig-7757d54716b26280b1b1785d89364a016a29c445.tar.xz
nvim-lspconfig-7757d54716b26280b1b1785d89364a016a29c445.tar.zst
nvim-lspconfig-7757d54716b26280b1b1785d89364a016a29c445.zip
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc/configs.md')
-rw-r--r--doc/configs.md18
1 files changed, 10 insertions, 8 deletions
diff --git a/doc/configs.md b/doc/configs.md
index 22555ea8..a320a9cc 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -2403,11 +2403,11 @@ Default config:
{
editorInfo = {
name = "Neovim",
- version = "0.12.0-dev+ga950e8ea9d"
+ version = "0.12.0-dev+g6d875a03bb"
},
editorPluginInfo = {
name = "Neovim",
- version = "0.12.0-dev+ga950e8ea9d"
+ version = "0.12.0-dev+g6d875a03bb"
}
}
```
@@ -4843,20 +4843,20 @@ Default config:
{
editorInfo = {
name = "Neovim",
- version = "0.12.0-dev+ga950e8ea9d"
+ version = "0.12.0-dev+g6d875a03bb"
},
editorPluginInfo = {
name = "Neovim LSP",
- version = "0.12.0-dev+ga950e8ea9d"
+ version = "0.12.0-dev+g6d875a03bb"
},
extension = {
name = "Neovim LSP Client",
- version = "0.12.0-dev+ga950e8ea9d"
+ version = "0.12.0-dev+g6d875a03bb"
},
ide = {
name = "Neovim",
vendor = "Neovim",
- version = "0.12.0-dev+ga950e8ea9d"
+ version = "0.12.0-dev+g6d875a03bb"
}
}
```
@@ -12634,6 +12634,8 @@ Use the `:LspTypescriptSourceAction` command to see "whole file" ("source") code
- organize imports
- remove unused code
+Use the `:LspTypescriptGoToSourceDefinition` command to navigate to the source definition of a symbol (e.g., jump to the original implementation instead of type definitions).
+
### Monorepo support
`ts_ls` supports monorepos by default. It will automatically find the `tsconfig.json` or `jsconfig.json` corresponding to the package you are working on.
@@ -12676,8 +12678,8 @@ Default config:
hostInfo = "neovim"
}
```
-- `on_attach`: [../lsp/ts_ls.lua:45](../lsp/ts_ls.lua#L45)
-- `root_dir`: [../lsp/ts_ls.lua:45](../lsp/ts_ls.lua#L45)
+- `on_attach`: [../lsp/ts_ls.lua:47](../lsp/ts_ls.lua#L47)
+- `root_dir`: [../lsp/ts_ls.lua:47](../lsp/ts_ls.lua#L47)
---