mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
44d13869ad
Disable php completion for the 4th part of the command, since php-eselect is differently designed and causes errors Closes #1131.
6 lines
354 B
Fish
6 lines
354 B
Fish
# Fist argument is the names of the service, i.e. a file in /etc/init.d
|
|
complete -c service -n "test (count (commandline -poc)) = 1" -xa "(__fish_print_service_names)" --description "Service name"
|
|
|
|
#The second argument is what action to take with the service
|
|
complete -c service -n "test (count (commandline -poc)) -gt 1" -xa '$__fish_service_commands'
|
|
|