diff options
| author | github-actions <github-actions@github.com> | 2023-05-16 00:57:55 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2023-05-16 00:57:55 +0000 |
| commit | 37ec63fc48ffd2a627ab462224a115ecfb56ff4f (patch) | |
| tree | 6baa682ee6318ab75da8175eded89c8d8cf50757 | |
| parent | feat: add cobol language support (#2616) (diff) | |
| download | nvim-lspconfig-37ec63fc48ffd2a627ab462224a115ecfb56ff4f.tar nvim-lspconfig-37ec63fc48ffd2a627ab462224a115ecfb56ff4f.tar.gz nvim-lspconfig-37ec63fc48ffd2a627ab462224a115ecfb56ff4f.tar.bz2 nvim-lspconfig-37ec63fc48ffd2a627ab462224a115ecfb56ff4f.tar.lz nvim-lspconfig-37ec63fc48ffd2a627ab462224a115ecfb56ff4f.tar.xz nvim-lspconfig-37ec63fc48ffd2a627ab462224a115ecfb56ff4f.tar.zst nvim-lspconfig-37ec63fc48ffd2a627ab462224a115ecfb56ff4f.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 28 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 28 |
2 files changed, 56 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 9c4bd6a6..c267f022 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -31,6 +31,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [clarity_lsp](#clarity_lsp) - [clojure_lsp](#clojure_lsp) - [cmake](#cmake) +- [cobol_ls](#cobol_ls) - [codeqlls](#codeqlls) - [coffeesense](#coffeesense) - [crystalline](#crystalline) @@ -1503,6 +1504,33 @@ require'lspconfig'.cmake.setup{} ``` +## cobol_ls + +Cobol language support + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.cobol_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "cobol-language-support" } + ``` + - `filetypes` : + ```lua + { "cobol" } + ``` + - `root_dir` : + ```lua + util.find_git_ancestor + ``` + + ## codeqlls Reference: diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 9c4bd6a6..c267f022 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -31,6 +31,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [clarity_lsp](#clarity_lsp) - [clojure_lsp](#clojure_lsp) - [cmake](#cmake) +- [cobol_ls](#cobol_ls) - [codeqlls](#codeqlls) - [coffeesense](#coffeesense) - [crystalline](#crystalline) @@ -1503,6 +1504,33 @@ require'lspconfig'.cmake.setup{} ``` +## cobol_ls + +Cobol language support + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.cobol_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "cobol-language-support" } + ``` + - `filetypes` : + ```lua + { "cobol" } + ``` + - `root_dir` : + ```lua + util.find_git_ancestor + ``` + + ## codeqlls Reference: |
