aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-11-12 01:22:26 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-11-12 01:22:26 +0000
commit90a28fd7637b66e055af62387ecee06f7cbd3173 (patch)
treed15460710231780adcd6682c2fd0b883f56d3572
parentfeat: add contextive-language-server support (#2888) (diff)
downloadnvim-lspconfig-90a28fd7637b66e055af62387ecee06f7cbd3173.tar
nvim-lspconfig-90a28fd7637b66e055af62387ecee06f7cbd3173.tar.gz
nvim-lspconfig-90a28fd7637b66e055af62387ecee06f7cbd3173.tar.bz2
nvim-lspconfig-90a28fd7637b66e055af62387ecee06f7cbd3173.tar.lz
nvim-lspconfig-90a28fd7637b66e055af62387ecee06f7cbd3173.tar.xz
nvim-lspconfig-90a28fd7637b66e055af62387ecee06f7cbd3173.tar.zst
nvim-lspconfig-90a28fd7637b66e055af62387ecee06f7cbd3173.zip
docs: update server_configurations.md
skip-checks: true
-rw-r--r--doc/server_configurations.md32
-rw-r--r--doc/server_configurations.txt32
2 files changed, 64 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 3653819a..1fbc9d5d 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -39,6 +39,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [cobol_ls](#cobol_ls)
- [codeqlls](#codeqlls)
- [coffeesense](#coffeesense)
+- [contextive](#contextive)
- [coq_lsp](#coq_lsp)
- [crystalline](#crystalline)
- [csharp_ls](#csharp_ls)
@@ -1838,6 +1839,37 @@ require'lspconfig'.coffeesense.setup{}
```
+## contextive
+
+https://github.com/dev-cycles/contextive
+
+Language Server for Contextive.
+
+Contextive allows you to define terms in a central file and provides auto-completion suggestions and hover panels for these terms wherever they're used.
+
+To install the language server, you need to download the appropriate [GitHub release asset](https://github.com/dev-cycles/contextive/releases/) for your operating system and architecture.
+
+After the download unzip the Contextive.LanguageServer binary and copy the file into a folder that is included in your system's PATH.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.contextive.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "Contextive.LanguageServer" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+
+
## coq_lsp
https://github.com/ejgallego/coq-lsp/
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index 3653819a..1fbc9d5d 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -39,6 +39,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [cobol_ls](#cobol_ls)
- [codeqlls](#codeqlls)
- [coffeesense](#coffeesense)
+- [contextive](#contextive)
- [coq_lsp](#coq_lsp)
- [crystalline](#crystalline)
- [csharp_ls](#csharp_ls)
@@ -1838,6 +1839,37 @@ require'lspconfig'.coffeesense.setup{}
```
+## contextive
+
+https://github.com/dev-cycles/contextive
+
+Language Server for Contextive.
+
+Contextive allows you to define terms in a central file and provides auto-completion suggestions and hover panels for these terms wherever they're used.
+
+To install the language server, you need to download the appropriate [GitHub release asset](https://github.com/dev-cycles/contextive/releases/) for your operating system and architecture.
+
+After the download unzip the Contextive.LanguageServer binary and copy the file into a folder that is included in your system's PATH.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.contextive.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "Contextive.LanguageServer" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+
+
## coq_lsp
https://github.com/ejgallego/coq-lsp/