mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
859 B
Bash
33 lines
859 B
Bash
#!/usr/bin/env bash
|
|
# Bash completion script for Helix editor
|
|
|
|
_hx() {
|
|
local cur prev languages
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD - 1]}"
|
|
|
|
case "$prev" in
|
|
-g | --grammar)
|
|
COMPREPLY=($(compgen -W 'fetch build' -- "$cur"))
|
|
return 0
|
|
;;
|
|
--health)
|
|
languages=$(hx --health | tail -n '+7' | awk '{print $1}' | sed 's/\x1b\[[0-9;]*m//g')
|
|
COMPREPLY=($(compgen -W """$languages""" -- "$cur"))
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
case "$2" in
|
|
-*)
|
|
COMPREPLY=($(compgen -W "-h --help --tutor -V --version -v -vv -vvv --health -g --grammar --vsplit --hsplit -c --config --log" -- """$2"""))
|
|
return 0
|
|
;;
|
|
*)
|
|
COMPREPLY=($(compgen -fd -- """$2"""))
|
|
return 0
|
|
;;
|
|
esac
|
|
} && complete -o filenames -F _hx hx
|