diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-11-12 08:46:09 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-11-12 08:46:09 +0000 |
| commit | d2d153a179ed59aa7134d7ebdf4d7dcb156efa22 (patch) | |
| tree | 9cee77314b137c4c3b62920dae0972d84201ba7c | |
| parent | feat: add robotcode support (#3431) (diff) | |
| download | nvim-lspconfig-d2d153a179ed59aa7134d7ebdf4d7dcb156efa22.tar nvim-lspconfig-d2d153a179ed59aa7134d7ebdf4d7dcb156efa22.tar.gz nvim-lspconfig-d2d153a179ed59aa7134d7ebdf4d7dcb156efa22.tar.bz2 nvim-lspconfig-d2d153a179ed59aa7134d7ebdf4d7dcb156efa22.tar.lz nvim-lspconfig-d2d153a179ed59aa7134d7ebdf4d7dcb156efa22.tar.xz nvim-lspconfig-d2d153a179ed59aa7134d7ebdf4d7dcb156efa22.tar.zst nvim-lspconfig-d2d153a179ed59aa7134d7ebdf4d7dcb156efa22.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 26 | ||||
| -rw-r--r-- | doc/configs.txt | 26 |
2 files changed, 52 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index aec640bc..4f12a22d 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -244,6 +244,7 @@ Nvim by running `:help lspconfig-all`. - [rescriptls](#rescriptls) - [rls](#rls) - [rnix](#rnix) +- [robotcode](#robotcode) - [robotframework_ls](#robotframework_ls) - [roc_ls](#roc_ls) - [rome](#rome) @@ -8426,6 +8427,31 @@ Default config: ``` +## robotcode + +https://robotcode.io + +RobotCode - Language Server Protocol implementation for Robot Framework. + +Snippet to enable the language server: +```lua +require'lspconfig'.robotcode.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "robotcode", "language-server" } + ``` +- `filetypes` : + ```lua + { "robot", "resource" } + ``` +- `get_language_id` source (use "gF" to visit): [../lua/lspconfig/configs/robotcode.lua:4](../lua/lspconfig/configs/robotcode.lua#L4) +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/robotcode.lua:4](../lua/lspconfig/configs/robotcode.lua#L4) +- `single_file_support` : `true` + + ## robotframework_ls https://github.com/robocorp/robotframework-lsp diff --git a/doc/configs.txt b/doc/configs.txt index aec640bc..4f12a22d 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -244,6 +244,7 @@ Nvim by running `:help lspconfig-all`. - [rescriptls](#rescriptls) - [rls](#rls) - [rnix](#rnix) +- [robotcode](#robotcode) - [robotframework_ls](#robotframework_ls) - [roc_ls](#roc_ls) - [rome](#rome) @@ -8426,6 +8427,31 @@ Default config: ``` +## robotcode + +https://robotcode.io + +RobotCode - Language Server Protocol implementation for Robot Framework. + +Snippet to enable the language server: +```lua +require'lspconfig'.robotcode.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "robotcode", "language-server" } + ``` +- `filetypes` : + ```lua + { "robot", "resource" } + ``` +- `get_language_id` source (use "gF" to visit): [../lua/lspconfig/configs/robotcode.lua:4](../lua/lspconfig/configs/robotcode.lua#L4) +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/robotcode.lua:4](../lua/lspconfig/configs/robotcode.lua#L4) +- `single_file_support` : `true` + + ## robotframework_ls https://github.com/robocorp/robotframework-lsp |
