Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'contrib/completion/hx.fish')
| -rw-r--r-- | contrib/completion/hx.fish | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/contrib/completion/hx.fish b/contrib/completion/hx.fish deleted file mode 100644 index d7ce7e89..00000000 --- a/contrib/completion/hx.fish +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env fish -# Fish completion script for Helix editor - -complete -c hx -s h -l help -d "Prints help information" -complete -c hx -l tutor -d "Loads the tutorial" -complete -c hx -l health -xa "(__hx_langs_ops)" -d "Checks for errors" -complete -c hx -l health -xka all -d "Prints all diagnostic informations" -complete -c hx -l health -xka all-languages -d "Lists all languages" -complete -c hx -l health -xka languages -d "Lists user configured languages" -complete -c hx -l health -xka clipboard -d "Prints system clipboard provider" -complete -c hx -s g -l grammar -x -a "fetch build" -d "Fetch or build tree-sitter grammars" -complete -c hx -s v -o vv -o vvv -d "Increases logging verbosity" -complete -c hx -s V -l version -d "Prints version information" -complete -c hx -l vsplit -d "Splits all given files vertically" -complete -c hx -l hsplit -d "Splits all given files horizontally" -complete -c hx -s c -l config -r -d "Specifies a file to use for config" -complete -c hx -l log -r -d "Specifies a file to use for logging" -complete -c hx -s w -l working-dir -d "Specify initial working directory" -xa "(__fish_complete_directories)" - -function __hx_langs_ops - hx --health all-languages | tail -n '+2' | string replace -fr '^(\S+) .*' '$1' -end |