diff options
| -rw-r--r-- | doc/server_configurations.md | 20 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 20 |
2 files changed, 14 insertions, 26 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 1c9f663b..1a4c443c 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -1528,7 +1528,7 @@ require'lspconfig'.cairo_ls.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("Scarb.toml", "cairo_project.toml", ".git") ``` @@ -2198,7 +2198,7 @@ require'lspconfig'.custom_elements_ls.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("tsconfig.json", "package.json", "jsconfig.json", ".git") ``` @@ -4142,7 +4142,7 @@ require'lspconfig'.gradle_ls.setup{} ``` - `root_dir` : ```lua - root_pattern("settings.gradle") + root_pattern("settings.gradle", "build.gradle") ``` @@ -4560,13 +4560,7 @@ require'lspconfig'.hls.setup{} ``` - `root_dir` : ```lua - function (filepath) - return ( - util.root_pattern('hie.yaml', 'stack.yaml', 'cabal.project')(filepath) - or util.root_pattern('*.cabal', 'package.yaml')(filepath) - ) - end - + root_pattern("hie.yaml", "stack.yaml", "cabal.project", "*.cabal", "package.yaml") ``` - `settings` : ```lua @@ -6731,7 +6725,7 @@ require'lspconfig'.omnisharp.setup{} ``` - `root_dir` : ```lua - root_pattern(".sln") or root_pattern(".csproj") + root_pattern("*.sln", "*.csproj", "omnisharp.json", "function.json") ``` - `sdk_include_prereleases` : ```lua @@ -10715,7 +10709,7 @@ require'lspconfig'.tsserver.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("tsconfig.json", "package.json", "jsconfig.json", ".git") ``` - `single_file_support` : ```lua @@ -11573,7 +11567,7 @@ require'lspconfig'.vtsls.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("tsconfig.json", "package.json", "jsconfig.json", ".git") ``` - `single_file_support` : ```lua diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 1c9f663b..1a4c443c 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -1528,7 +1528,7 @@ require'lspconfig'.cairo_ls.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("Scarb.toml", "cairo_project.toml", ".git") ``` @@ -2198,7 +2198,7 @@ require'lspconfig'.custom_elements_ls.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("tsconfig.json", "package.json", "jsconfig.json", ".git") ``` @@ -4142,7 +4142,7 @@ require'lspconfig'.gradle_ls.setup{} ``` - `root_dir` : ```lua - root_pattern("settings.gradle") + root_pattern("settings.gradle", "build.gradle") ``` @@ -4560,13 +4560,7 @@ require'lspconfig'.hls.setup{} ``` - `root_dir` : ```lua - function (filepath) - return ( - util.root_pattern('hie.yaml', 'stack.yaml', 'cabal.project')(filepath) - or util.root_pattern('*.cabal', 'package.yaml')(filepath) - ) - end - + root_pattern("hie.yaml", "stack.yaml", "cabal.project", "*.cabal", "package.yaml") ``` - `settings` : ```lua @@ -6731,7 +6725,7 @@ require'lspconfig'.omnisharp.setup{} ``` - `root_dir` : ```lua - root_pattern(".sln") or root_pattern(".csproj") + root_pattern("*.sln", "*.csproj", "omnisharp.json", "function.json") ``` - `sdk_include_prereleases` : ```lua @@ -10715,7 +10709,7 @@ require'lspconfig'.tsserver.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("tsconfig.json", "package.json", "jsconfig.json", ".git") ``` - `single_file_support` : ```lua @@ -11573,7 +11567,7 @@ require'lspconfig'.vtsls.setup{} ``` - `root_dir` : ```lua - root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git") + root_pattern("tsconfig.json", "package.json", "jsconfig.json", ".git") ``` - `single_file_support` : ```lua |
