mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 16:19:14 +08:00
af2d19bde0
* completions: add hikari completion * requested changes by code reviewer
8 lines
279 B
Fish
8 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'
|