diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-03-17 20:52:15 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-03-17 20:52:15 +0000 |
| commit | 702f69fb167e9119f14adc4dfd4fcadf4d1b07a0 (patch) | |
| tree | 0284b05bc33d8a7df48c39c411970149923b4f17 /doc | |
| parent | fix(nextflow_ls): update cmd #4349 (diff) | |
| download | nvim-lspconfig-702f69fb167e9119f14adc4dfd4fcadf4d1b07a0.tar nvim-lspconfig-702f69fb167e9119f14adc4dfd4fcadf4d1b07a0.tar.gz nvim-lspconfig-702f69fb167e9119f14adc4dfd4fcadf4d1b07a0.tar.bz2 nvim-lspconfig-702f69fb167e9119f14adc4dfd4fcadf4d1b07a0.tar.lz nvim-lspconfig-702f69fb167e9119f14adc4dfd4fcadf4d1b07a0.tar.xz nvim-lspconfig-702f69fb167e9119f14adc4dfd4fcadf4d1b07a0.tar.zst nvim-lspconfig-702f69fb167e9119f14adc4dfd4fcadf4d1b07a0.zip | |
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 4 | ||||
| -rw-r--r-- | doc/configs.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/configs.md b/doc/configs.md index 9fd72e12..f8f71d1d 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -8027,7 +8027,7 @@ If you have installed nextflow language server, you can set the `cmd` custom pat ```lua vim.lsp.config('nextflow_ls', { - cmd = { 'java', '-jar', 'nextflow-language-server-all.jar' }, + cmd = { 'nextflow-language-server' }, filetypes = { 'nextflow' }, settings = { nextflow = { @@ -8047,7 +8047,7 @@ vim.lsp.enable('nextflow_ls') Default config: - `cmd` : ```lua - { "java", "-jar", "nextflow-language-server-all.jar" } + { "nextflow-language-server" } ``` - `filetypes` : ```lua diff --git a/doc/configs.txt b/doc/configs.txt index 9e0b613a..b79597f7 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -5889,7 +5889,7 @@ Requirements: If you have installed nextflow language server, you can set the `cmd` custom path as follow: >lua vim.lsp.config('nextflow_ls', { - cmd = { 'java', '-jar', 'nextflow-language-server-all.jar' }, + cmd = { 'nextflow-language-server' }, filetypes = { 'nextflow' }, settings = { nextflow = { @@ -5906,7 +5906,7 @@ Snippet to enable the language server: >lua Default config: - cmd: >lua - { "java", "-jar", "nextflow-language-server-all.jar" } + { "nextflow-language-server" } - filetypes: >lua { "nextflow" } - root_markers: >lua |
