From 74e14808cdb15e625449027019406e1ff6dda020 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 2 Jun 2024 14:43:33 +0000 Subject: [PATCH] docs: update server_configurations.md skip-checks: true --- doc/server_configurations.md | 45 +++++++++++++++++++++++++++++++++++ doc/server_configurations.txt | 45 +++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 0d4d25468a..0482100fb8 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [facility_language_server](#facility_language_server) - [fennel_language_server](#fennel_language_server) - [fennel_ls](#fennel_ls) +- [fish_lsp](#fish_lsp) - [flow](#flow) - [flux_lsp](#flux_lsp) - [foam_ls](#foam_ls) @@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{} ``` +## fish_lsp + +https://github.com/ndonfris/fish-lsp + +A Language Server Protocol (LSP) tailored for the fish shell. +This project aims to enhance the coding experience for fish, +by introducing a suite of intelligent features like auto-completion, +scope aware symbol analysis, per-token hover generation, and many others. + +[homepage](https://www.fish-lsp.dev/) + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.fish_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "fish-lsp", "start" } + ``` + - `cmd_env` : + ```lua + { + fish_lsp_show_client_popups = false + } + ``` + - `filetypes` : + ```lua + { "fish" } + ``` + - `root_dir` : + ```lua + util.find_git_ancestor + ``` + - `single_file_support` : + ```lua + true + ``` + + ## flow https://flow.org/ diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 0d4d25468a..0482100fb8 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [facility_language_server](#facility_language_server) - [fennel_language_server](#fennel_language_server) - [fennel_ls](#fennel_ls) +- [fish_lsp](#fish_lsp) - [flow](#flow) - [flux_lsp](#flux_lsp) - [foam_ls](#foam_ls) @@ -3935,6 +3936,50 @@ require'lspconfig'.fennel_ls.setup{} ``` +## fish_lsp + +https://github.com/ndonfris/fish-lsp + +A Language Server Protocol (LSP) tailored for the fish shell. +This project aims to enhance the coding experience for fish, +by introducing a suite of intelligent features like auto-completion, +scope aware symbol analysis, per-token hover generation, and many others. + +[homepage](https://www.fish-lsp.dev/) + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.fish_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "fish-lsp", "start" } + ``` + - `cmd_env` : + ```lua + { + fish_lsp_show_client_popups = false + } + ``` + - `filetypes` : + ```lua + { "fish" } + ``` + - `root_dir` : + ```lua + util.find_git_ancestor + ``` + - `single_file_support` : + ```lua + true + ``` + + ## flow https://flow.org/