File tree Expand file tree Collapse file tree 2 files changed +90
-0
lines changed Expand file tree Collapse file tree 2 files changed +90
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
90
90
- [ facility_language_server] ( #facility_language_server )
91
91
- [ fennel_language_server] ( #fennel_language_server )
92
92
- [ fennel_ls] ( #fennel_ls )
93
+ - [ fish_lsp] ( #fish_lsp )
93
94
- [ flow] ( #flow )
94
95
- [ flux_lsp] ( #flux_lsp )
95
96
- [ foam_ls] ( #foam_ls )
@@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{}
3935
3936
```
3936
3937
3937
3938
3939
+ ## fish_lsp
3940
+
3941
+ https://github.com/ndonfris/fish-lsp
3942
+
3943
+ A Language Server Protocol (LSP) tailored for the fish shell.
3944
+ This project aims to enhance the coding experience for fish,
3945
+ by introducing a suite of intelligent features like auto-completion,
3946
+ scope aware symbol analysis, per-token hover generation, and many others.
3947
+
3948
+ [ homepage] ( https://www.fish-lsp.dev/ )
3949
+
3950
+
3951
+
3952
+ ** Snippet to enable the language server:**
3953
+ ``` lua
3954
+ require ' lspconfig' .fish_lsp .setup {}
3955
+ ```
3956
+
3957
+
3958
+ ** Default values:**
3959
+ - ` cmd ` :
3960
+ ``` lua
3961
+ { " fish-lsp" , " start" }
3962
+ ```
3963
+ - ` cmd_env ` :
3964
+ ``` lua
3965
+ {
3966
+ fish_lsp_show_client_popups = false
3967
+ }
3968
+ ```
3969
+ - ` filetypes ` :
3970
+ ``` lua
3971
+ { " fish" }
3972
+ ```
3973
+ - ` root_dir ` :
3974
+ ``` lua
3975
+ util .find_git_ancestor
3976
+ ```
3977
+ - ` single_file_support ` :
3978
+ ``` lua
3979
+ true
3980
+ ```
3981
+
3982
+
3938
3983
## flow
3939
3984
3940
3985
https://flow.org/
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
90
90
- [ facility_language_server] ( #facility_language_server )
91
91
- [ fennel_language_server] ( #fennel_language_server )
92
92
- [ fennel_ls] ( #fennel_ls )
93
+ - [ fish_lsp] ( #fish_lsp )
93
94
- [ flow] ( #flow )
94
95
- [ flux_lsp] ( #flux_lsp )
95
96
- [ foam_ls] ( #foam_ls )
@@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{}
3935
3936
```
3936
3937
3937
3938
3939
+ ## fish_lsp
3940
+
3941
+ https://github.com/ndonfris/fish-lsp
3942
+
3943
+ A Language Server Protocol (LSP) tailored for the fish shell.
3944
+ This project aims to enhance the coding experience for fish,
3945
+ by introducing a suite of intelligent features like auto-completion,
3946
+ scope aware symbol analysis, per-token hover generation, and many others.
3947
+
3948
+ [ homepage] ( https://www.fish-lsp.dev/ )
3949
+
3950
+
3951
+
3952
+ ** Snippet to enable the language server:**
3953
+ ``` lua
3954
+ require ' lspconfig' .fish_lsp .setup {}
3955
+ ```
3956
+
3957
+
3958
+ ** Default values:**
3959
+ - ` cmd ` :
3960
+ ``` lua
3961
+ { " fish-lsp" , " start" }
3962
+ ```
3963
+ - ` cmd_env ` :
3964
+ ``` lua
3965
+ {
3966
+ fish_lsp_show_client_popups = false
3967
+ }
3968
+ ```
3969
+ - ` filetypes ` :
3970
+ ``` lua
3971
+ { " fish" }
3972
+ ```
3973
+ - ` root_dir ` :
3974
+ ``` lua
3975
+ util .find_git_ancestor
3976
+ ```
3977
+ - ` single_file_support ` :
3978
+ ``` lua
3979
+ true
3980
+ ```
3981
+
3982
+
3938
3983
## flow
3939
3984
3940
3985
https://flow.org/
You can’t perform that action at this time.
0 commit comments