Skip to content

Commit 6178862

Browse files
committed
feat: add nextflow_ls support
1 parent 4d0e5b4 commit 6178862

File tree

6 files changed

+8
-0
lines changed

6 files changed

+8
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ local DEFAULT_SETTINGS = {
318318
| Metamath Zero | [`mm0_ls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#mm0_ls) |
319319
| Motoko | [`motoko_lsp`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#motoko_lsp) |
320320
| Move | [`move_analyzer`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#move_analyzer) |
321+
| Nextflow | [`nextflow_ls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nextflow_ls) |
321322
| Nginx | [`nginx_language_server`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nginx_language_server) |
322323
| Nickel | [`nickel_ls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nickel_ls) |
323324
| Nim | [`nim_langserver`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nim_langserver) |

doc/mason-lspconfig-mapping.txt

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ motoko-lsp motoko_lsp
116116
move-analyzer move_analyzer
117117
mutt-language-server mutt_ls
118118
neocmakelsp neocmake
119+
nextflow-language-server nextflow_ls
119120
nextls nextls
120121
nginx-language-server nginx_language_server
121122
nickel-lang-lsp nickel_ls

doc/server-mapping.md

+1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
| [move_analyzer](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#move_analyzer) | [move-analyzer](https://mason-registry.dev/registry/list#move-analyzer) |
114114
| [mutt_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#mutt_ls) | [mutt-language-server](https://mason-registry.dev/registry/list#mutt-language-server) |
115115
| [neocmake](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#neocmake) | [neocmakelsp](https://mason-registry.dev/registry/list#neocmakelsp) |
116+
| [nextflow_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nextflow_ls) | [nextflow-language-server](https://mason-registry.dev/registry/list#nextflow-language-server) |
116117
| [nextls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nextls) | [nextls](https://mason-registry.dev/registry/list#nextls) |
117118
| [nginx_language_server](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nginx_language_server) | [nginx-language-server](https://mason-registry.dev/registry/list#nginx-language-server) |
118119
| [nickel_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#nickel_ls) | [nickel-lang-lsp](https://mason-registry.dev/registry/list#nickel-lang-lsp) |

lua/mason-lspconfig/mappings/filetype.lua

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ return {
130130
mysql = { "sqlls", "sqls" },
131131
ncl = { "nickel_ls" },
132132
neomuttrc = { "mutt_ls" },
133+
nextflow = { "nextflow_ls" },
133134
nginx = { "nginx_language_server" },
134135
nickel = { "nickel_ls" },
135136
nim = { "nim_langserver", "nimls" },

lua/mason-lspconfig/mappings/server.lua

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ M.lspconfig_to_package = {
115115
["move_analyzer"] = "move-analyzer",
116116
["mutt_ls"] = "mutt-language-server",
117117
["neocmake"] = "neocmakelsp",
118+
["nextflow_ls"] = "nextflow-language-server",
118119
["nextls"] = "nextls",
119120
["nickel_ls"] = "nickel-lang-lsp",
120121
["nginx_language_server"] = "nginx-language-server",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
return function()
2+
return { cmd = { "nextflow-language-server" } }
3+
end

0 commit comments

Comments
 (0)