diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-10-31 00:04:58 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-10-31 00:04:58 +0000 |
| commit | 2edc6224caf4f2564a852c2b85d91fd8c40b95c2 (patch) | |
| tree | 37845374d681c2c1b100111beb528d411566302b | |
| parent | fix(pyright): prioritize "pyrightconfig.json" root marker #4171 (diff) | |
| download | nvim-lspconfig-2edc6224caf4f2564a852c2b85d91fd8c40b95c2.tar nvim-lspconfig-2edc6224caf4f2564a852c2b85d91fd8c40b95c2.tar.gz nvim-lspconfig-2edc6224caf4f2564a852c2b85d91fd8c40b95c2.tar.bz2 nvim-lspconfig-2edc6224caf4f2564a852c2b85d91fd8c40b95c2.tar.lz nvim-lspconfig-2edc6224caf4f2564a852c2b85d91fd8c40b95c2.tar.xz nvim-lspconfig-2edc6224caf4f2564a852c2b85d91fd8c40b95c2.tar.zst nvim-lspconfig-2edc6224caf4f2564a852c2b85d91fd8c40b95c2.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 4 | ||||
| -rw-r--r-- | doc/configs.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/configs.md b/doc/configs.md index 07c265c7..8d2c1ad5 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -1358,7 +1358,7 @@ Default config: - `on_attach`: [../lsp/basedpyright.lua:24](../lsp/basedpyright.lua#L24) - `root_markers` : ```lua - { "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", "pyrightconfig.json", ".git" } + { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } ``` - `settings` : ```lua @@ -9225,7 +9225,7 @@ Default config: - `on_attach`: [../lsp/pyright.lua:24](../lsp/pyright.lua#L24) - `root_markers` : ```lua - { "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", "pyrightconfig.json", ".git" } + { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } ``` - `settings` : ```lua diff --git a/doc/configs.txt b/doc/configs.txt index 49553910..e6238dd0 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -777,7 +777,7 @@ Default config: { "python" } - on_attach (use "gF" to view): ../lsp/basedpyright.lua:24 - root_markers: >lua - { "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", "pyrightconfig.json", ".git" } + { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } - settings: >lua { basedpyright = { @@ -6785,7 +6785,7 @@ Default config: { "python" } - on_attach (use "gF" to view): ../lsp/pyright.lua:24 - root_markers: >lua - { "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", "pyrightconfig.json", ".git" } + { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } - settings: >lua { python = { |
