aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/service.fish
diff options
context:
space:
mode:
authorGravatar Jelte Fennema <jelte12345@gmail.com>2013-11-19 19:45:21 +0100
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2013-11-27 18:36:05 +0800
commit44d13869ad21132796f3cf55e4b8ed3fd32cac97 (patch)
treec655a99042c9cdc59cddda0518e80ee6b905c6f5 /share/completions/service.fish
parent9862eb930d941a6fb93471bbb8e125076e95103a (diff)
Add eselect, rc-update and rc-service completions. (These are utilities used by Gentoo Linux)
Disable php completion for the 4th part of the command, since php-eselect is differently designed and causes errors Closes #1131.
Diffstat (limited to 'share/completions/service.fish')
-rw-r--r--share/completions/service.fish10
1 files changed, 1 insertions, 9 deletions
diff --git a/share/completions/service.fish b/share/completions/service.fish
index 2f361437..4914f97b 100644
--- a/share/completions/service.fish
+++ b/share/completions/service.fish
@@ -1,13 +1,5 @@
-function __fish_service_print_names
- if type -f systemctl >/dev/null
- command systemctl list-units -t service | cut -d ' ' -f 1 | grep '\.service$' | sed -e 's/\.service$//'
- end
-
- command ls /etc/init.d
-end
-
# 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_service_print_names)" --description "Service name"
+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'