mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
149a0b98af
I really kinda hate how insistent clang-format is to have line breaks *IFF THE LINE IS TOO LONG*. Like... lemme just add a break if it looks better, will you? But it is the style at this time, so we shall tie an onion to our belt.
7 lines
269 B
Fish
7 lines
269 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'
|