mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-01 07:38:46 +00:00
af2d19bde0
* completions: add hikari completion * requested changes by code reviewer
7 lines
279 B
Fish
7 lines
279 B
Fish
set PROG 'hikari'
|
|
|
|
complete -c $PROG -f
|
|
complete -c $PROG -s 'a' -F -d 'Specify autostart executable'
|
|
complete -c $PROG -s 'c' -F -d 'Specify a configuration file'
|
|
complete -c $PROG -f -s 'h' -d 'Show help message and quit'
|
|
complete -c $PROG -f -s 'v' -d 'Show version and quit'
|