diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 22 | ||||
| -rw-r--r-- | doc/configs.txt | 22 |
2 files changed, 24 insertions, 20 deletions
diff --git a/doc/configs.md b/doc/configs.md index 26f90aa0..a87191f6 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -1352,7 +1352,7 @@ Default config: ```lua { "python" } ``` -- `on_attach`: [../lsp/basedpyright.lua:24](../lsp/basedpyright.lua#L24) +- `on_attach`: [../lsp/basedpyright.lua:25](../lsp/basedpyright.lua#L25) - `root_markers` : ```lua { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } @@ -2401,11 +2401,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gd2517acdc5" + version = "0.12.0-dev+gd017f3c9a0" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+gd2517acdc5" + version = "0.12.0-dev+gd017f3c9a0" } } ``` @@ -3456,7 +3456,7 @@ Default config: show_symbols_only_follow_by_hanzi = false } ``` -- `on_attach`: [../lsp/ds_pinyin_lsp.lua:46](../lsp/ds_pinyin_lsp.lua#L46) +- `on_attach`: [../lsp/ds_pinyin_lsp.lua:48](../lsp/ds_pinyin_lsp.lua#L48) - `root_markers` : ```lua { ".git" } @@ -6173,7 +6173,7 @@ Default config: ```lua { "julia" } ``` -- `on_attach`: [../lsp/julials.lua:120](../lsp/julials.lua#L120) +- `on_attach`: [../lsp/julials.lua:121](../lsp/julials.lua#L121) - `root_markers` : ```lua { "Project.toml", "JuliaProject.toml" } @@ -6774,7 +6774,7 @@ Default config: ``` - `root_markers` : ```lua - { ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml", "selene.toml", "selene.yml", ".git" } + { ".emmyrc.json", ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml", "selene.toml", "selene.yml", ".git" } ``` --- @@ -9224,7 +9224,7 @@ Default config: ```lua { "python" } ``` -- `on_attach`: [../lsp/pyright.lua:24](../lsp/pyright.lua#L24) +- `on_attach`: [../lsp/pyright.lua:25](../lsp/pyright.lua#L25) - `root_markers` : ```lua { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } @@ -9898,12 +9898,12 @@ Default config: ```lua "utf-8" ``` -- `on_attach`: [../lsp/roslyn_ls.lua:101](../lsp/roslyn_ls.lua#L101) +- `on_attach`: [../lsp/roslyn_ls.lua:100](../lsp/roslyn_ls.lua#L100) - `on_init` : ```lua { <function 1> } ``` -- `root_dir`: [../lsp/roslyn_ls.lua:101](../lsp/roslyn_ls.lua#L101) +- `root_dir`: [../lsp/roslyn_ls.lua:100](../lsp/roslyn_ls.lua#L100) - `settings` : ```lua { @@ -10553,7 +10553,9 @@ Default config: ``` - `init_options` : ```lua - {} + { + storageDir = vim.NIL + } ``` - `root_dir`: [../lsp/smarty_ls.lua:14](../lsp/smarty_ls.lua#L14) - `settings` : diff --git a/doc/configs.txt b/doc/configs.txt index 9b9ba7c5..73c57767 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -774,7 +774,7 @@ Default config: { "basedpyright-langserver", "--stdio" } - filetypes: >lua { "python" } -- on_attach (use "gF" to view): ../lsp/basedpyright.lua:24 +- on_attach (use "gF" to view): ../lsp/basedpyright.lua:25 - root_markers: >lua { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } - settings: >lua @@ -1572,11 +1572,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gd2517acdc5" + version = "0.12.0-dev+gd017f3c9a0" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+gd2517acdc5" + version = "0.12.0-dev+gd017f3c9a0" } } - on_attach (use "gF" to view): ../lsp/copilot.lua:106 @@ -2362,7 +2362,7 @@ Default config: show_symbols_by_n_times = 0, show_symbols_only_follow_by_hanzi = false } -- on_attach (use "gF" to view): ../lsp/ds_pinyin_lsp.lua:46 +- on_attach (use "gF" to view): ../lsp/ds_pinyin_lsp.lua:48 - root_markers: >lua { ".git" } < @@ -4447,7 +4447,7 @@ Default config: { "julia", "--startup-file=no", "--history-file=no", "-e", ' # Load LanguageServer.jl: attempt to load from ~/.julia/environments/nvim-lspconfig\n # with the regular load path as a fallback\n ls_install_path = joinpath(\n get(DEPOT_PATH, 1, joinpath(homedir(), ".julia")),\n "environments", "nvim-lspconfig"\n )\n pushfirst!(LOAD_PATH, ls_install_path)\n using LanguageServer, SymbolServer, StaticLint\n popfirst!(LOAD_PATH)\n depot_path = get(ENV, "JULIA_DEPOT_PATH", "")\n project_path = let\n dirname(something(\n ## 1. Finds an explicitly set project (JULIA_PROJECT)\n Base.load_path_expand((\n p = get(ENV, "JULIA_PROJECT", nothing);\n p === nothing ? nothing : isempty(p) ? nothing : p\n )),\n ## 2. Look for a Project.toml file in the current working directory,\n ## or parent directories, with $HOME as an upper boundary\n Base.current_project(),\n ## 3. First entry in the load path\n get(Base.load_path(), 1, nothing),\n ## 4. Fallback to default global environment,\n ## this is more or less unreachable\n Base.load_path_expand("@v#.#"),\n ))\n end\n @info "Running language server" VERSION pwd() project_path depot_path\n server = LanguageServer.LanguageServerInstance(stdin, stdout, project_path, depot_path)\n server.runlinter = true\n run(server)\n ' } - filetypes: >lua { "julia" } -- on_attach (use "gF" to view): ../lsp/julials.lua:120 +- on_attach (use "gF" to view): ../lsp/julials.lua:121 - root_markers: >lua { "Project.toml", "JuliaProject.toml" } < @@ -4921,7 +4921,7 @@ Default config: - filetypes: >lua { "lua" } - root_markers: >lua - { ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml", "selene.toml", "selene.yml", ".git" } + { ".emmyrc.json", ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml", "selene.toml", "selene.yml", ".git" } < ------------------------------------------------------------------------------ @@ -6785,7 +6785,7 @@ Default config: { "pyright-langserver", "--stdio" } - filetypes: >lua { "python" } -- on_attach (use "gF" to view): ../lsp/pyright.lua:24 +- on_attach (use "gF" to view): ../lsp/pyright.lua:25 - root_markers: >lua { "pyrightconfig.json", "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } - settings: >lua @@ -7300,10 +7300,10 @@ Default config: "roslyn_ls" - offset_encoding: >lua "utf-8" -- on_attach (use "gF" to view): ../lsp/roslyn_ls.lua:101 +- on_attach (use "gF" to view): ../lsp/roslyn_ls.lua:100 - on_init: >lua { <function 1> } -- root_dir (use "gF" to view): ../lsp/roslyn_ls.lua:101 +- root_dir (use "gF" to view): ../lsp/roslyn_ls.lua:100 - settings: >lua { ["csharp|background_analysis"] = { @@ -7797,7 +7797,9 @@ Default config: - filetypes: >lua { "smarty" } - init_options: >lua - {} + { + storageDir = vim.NIL + } - root_dir (use "gF" to view): ../lsp/smarty_ls.lua:14 - settings: >lua { |
