diff options
| author | github-actions <github-actions@github.com> | 2021-11-15 09:31:35 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2021-11-15 09:31:35 +0000 |
| commit | c7cef852a6199cb9a8f77785bf5d3153829aba07 (patch) | |
| tree | 93d85b482982e3a514b909e272cb807c5b0e2f77 | |
| parent | feat: add robotframework-lsp support (#1357) (diff) | |
| download | nvim-lspconfig-c7cef852a6199cb9a8f77785bf5d3153829aba07.tar nvim-lspconfig-c7cef852a6199cb9a8f77785bf5d3153829aba07.tar.gz nvim-lspconfig-c7cef852a6199cb9a8f77785bf5d3153829aba07.tar.bz2 nvim-lspconfig-c7cef852a6199cb9a8f77785bf5d3153829aba07.tar.lz nvim-lspconfig-c7cef852a6199cb9a8f77785bf5d3153829aba07.tar.xz nvim-lspconfig-c7cef852a6199cb9a8f77785bf5d3153829aba07.tar.zst nvim-lspconfig-c7cef852a6199cb9a8f77785bf5d3153829aba07.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 6c75b84b..dc3f7902 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -86,6 +86,7 @@ that config. - [rescriptls](#rescriptls) - [rls](#rls) - [rnix](#rnix) +- [robotframework_ls](#robotframework_ls) - [rome](#rome) - [rust_analyzer](#rust_analyzer) - [scry](#scry) @@ -5483,6 +5484,30 @@ require'lspconfig'.rnix.setup{} ``` +## robotframework_ls + +https://github.com/robocorp/robotframework-lsp + +Language Server Protocol implementation for Robot Framework. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.robotframework_ls.setup{} +``` + +**Commands and default values:** +```lua + Commands: + + Default Values: + cmd = { "robotframework_ls" } + filetypes = { "robot" } + root_dir = util.root_pattern('robotidy.toml', 'pyproject.toml')(fname) or util.find_git_ancestor(fname) +``` + + ## rome https://rome.tools |
