ndonfris / fish-lsp

LSP implementation for the fish shell langauge 🐠
https://fish-lsp.dev
MIT License
97 stars 6 forks source link

fix: no abbrs causing crash (#28) #30

Closed ndonfris closed 5 months ago

ndonfris commented 5 months ago

Why?

Fixes and tests issues in src/utils/completions/startup-config.ts, when the user does not have any defined abbr, alias, or event. This patch should prevent piping empty outputs from any command above, to their trailing formatting commands.

- abbr | string split ' -- ' -n -m1 -f2 | string unescape
+ [ (abbr | count) -eq 0 ] || abbr | string split ' -- ' -n -m1 -f2 | string unescape

Other changes