bmalehorn / vscode-fish

Fish syntax highlighting and formatting
MIT License
62 stars 6 forks source link

Create LSP for Fish #36

Open EmilyGraceSeville7cf opened 11 months ago

EmilyGraceSeville7cf commented 11 months ago

From LSP I expect:

Most of these features exist for Bash LSP and Nushell LSP.

bmalehorn commented 11 months ago

Hi @EmilySeville7cfg, this extension is just a ~100 lines of code project I made to fix up a few syntax highlighting bugs, while a real LSP would be more like 10,000 lines of code that requires a lot of knowledge of the fish internals. This is similar to a formatter, which might be pretty complicated to write from scratch, but it was no problem to add formatting to this extension by calling out to the official fish shell's fish_indent executable.

So I'd be happy to integrate with an existing fish LSP, but I'm not planning on writing one myself. Maybe this would come from official fish-shell project, where they have an issue about it: https://github.com/fish-shell/fish-shell/issues/5557. Or maybe from an independent repo like https://github.com/bash-lsp/bash-language-server but for fish. If you want to look into making a fish LSP yourself that would be awesome & it would be no problem to add it to this extension.

zanchey commented 2 weeks ago

Some work done in https://github.com/ndonfris/fish-lsp though I can't make any comment on quality