diff options
| author | github-actions <github-actions@github.com> | 2022-06-14 21:07:53 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-06-14 21:07:53 +0000 |
| commit | 8f3855d1f2187fea2890dde16eae418e9d67cc46 (patch) | |
| tree | a25243594a73709304405cef290eb8f2bdec353e /doc | |
| parent | feat: add configuration for ghdl-ls VHDL language server (#1812) (diff) | |
| download | nvim-lspconfig-8f3855d1f2187fea2890dde16eae418e9d67cc46.tar nvim-lspconfig-8f3855d1f2187fea2890dde16eae418e9d67cc46.tar.gz nvim-lspconfig-8f3855d1f2187fea2890dde16eae418e9d67cc46.tar.bz2 nvim-lspconfig-8f3855d1f2187fea2890dde16eae418e9d67cc46.tar.lz nvim-lspconfig-8f3855d1f2187fea2890dde16eae418e9d67cc46.tar.xz nvim-lspconfig-8f3855d1f2187fea2890dde16eae418e9d67cc46.tar.zst nvim-lspconfig-8f3855d1f2187fea2890dde16eae418e9d67cc46.zip | |
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/server_configurations.md | 37 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 37 |
2 files changed, 74 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index c56fdb9d..ccfa106b 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -50,6 +50,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [fstar](#fstar) - [gdscript](#gdscript) - [ghcide](#ghcide) +- [ghdl_ls](#ghdl_ls) - [glint](#glint) - [golangci_lint_ls](#golangci_lint_ls) - [gopls](#gopls) @@ -2065,6 +2066,42 @@ require'lspconfig'.ghcide.setup{} ``` +## ghdl_ls + +https://github.com/ghdl/ghdl-language-server + +A language server for VHDL, using ghdl as its backend. + +`ghdl-ls` is part of pyghdl, for installation instructions see +[the upstream README](https://github.com/ghdl/ghdl/tree/master/pyGHDL/lsp). + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.ghdl_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "ghdl-ls" } + ``` + - `filetypes` : + ```lua + { "vhdl" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + true + ``` + + ## glint https://github.com/typed-ember/glint diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index c56fdb9d..ccfa106b 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -50,6 +50,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [fstar](#fstar) - [gdscript](#gdscript) - [ghcide](#ghcide) +- [ghdl_ls](#ghdl_ls) - [glint](#glint) - [golangci_lint_ls](#golangci_lint_ls) - [gopls](#gopls) @@ -2065,6 +2066,42 @@ require'lspconfig'.ghcide.setup{} ``` +## ghdl_ls + +https://github.com/ghdl/ghdl-language-server + +A language server for VHDL, using ghdl as its backend. + +`ghdl-ls` is part of pyghdl, for installation instructions see +[the upstream README](https://github.com/ghdl/ghdl/tree/master/pyGHDL/lsp). + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.ghdl_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "ghdl-ls" } + ``` + - `filetypes` : + ```lua + { "vhdl" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + true + ``` + + ## glint https://github.com/typed-ember/glint |
