diff options
| author | github-actions <github-actions@github.com> | 2023-03-23 04:48:21 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2023-03-23 04:48:21 +0000 |
| commit | 1f29160f4e5d2866949c1a60634c35604657b917 (patch) | |
| tree | cf0ca7475929cc9eb2c53feb2ce556a14c0bf51c | |
| parent | refactor(bashls): migrate to a workspace config (#2520) (diff) | |
| download | nvim-lspconfig-1f29160f4e5d2866949c1a60634c35604657b917.tar nvim-lspconfig-1f29160f4e5d2866949c1a60634c35604657b917.tar.gz nvim-lspconfig-1f29160f4e5d2866949c1a60634c35604657b917.tar.bz2 nvim-lspconfig-1f29160f4e5d2866949c1a60634c35604657b917.tar.lz nvim-lspconfig-1f29160f4e5d2866949c1a60634c35604657b917.tar.xz nvim-lspconfig-1f29160f4e5d2866949c1a60634c35604657b917.tar.zst nvim-lspconfig-1f29160f4e5d2866949c1a60634c35604657b917.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 14 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 14 |
2 files changed, 16 insertions, 12 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 914d7672..40355a64 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -792,12 +792,6 @@ require'lspconfig'.bashls.setup{} ```lua { "bash-language-server", "start" } ``` - - `cmd_env` : - ```lua - { - GLOB_PATTERN = "*@(.sh|.inc|.bash|.command)" - } - ``` - `filetypes` : ```lua { "sh" } @@ -806,6 +800,14 @@ require'lspconfig'.bashls.setup{} ```lua util.find_git_ancestor ``` + - `settings` : + ```lua + { + bashIde = { + globPattern = "*@(.sh|.inc|.bash|.command)" + } + } + ``` - `single_file_support` : ```lua true diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 914d7672..40355a64 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -792,12 +792,6 @@ require'lspconfig'.bashls.setup{} ```lua { "bash-language-server", "start" } ``` - - `cmd_env` : - ```lua - { - GLOB_PATTERN = "*@(.sh|.inc|.bash|.command)" - } - ``` - `filetypes` : ```lua { "sh" } @@ -806,6 +800,14 @@ require'lspconfig'.bashls.setup{} ```lua util.find_git_ancestor ``` + - `settings` : + ```lua + { + bashIde = { + globPattern = "*@(.sh|.inc|.bash|.command)" + } + } + ``` - `single_file_support` : ```lua true |
