mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-17 02:08:42 +00:00
7ddecde543
darcs-hash:20050920133155-ac50b-9a14c6c664dd03afbe8e15e7c7998fcfb5c3c750.gz
7 lines
340 B
Fish
7 lines
340 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 "(command ls /etc/init.d)" -d "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'
|
|
|