From 0cc69f13c2355831e8f07962c072c09ca35fd5f3 Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Tue, 6 Jan 2015 19:31:39 +0100 Subject: Add edit subcommand to netctl --- contrib/zsh-completion | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'contrib/zsh-completion') diff --git a/contrib/zsh-completion b/contrib/zsh-completion index 8e88437..05c506f 100644 --- a/contrib/zsh-completion +++ b/contrib/zsh-completion @@ -11,7 +11,7 @@ _wireless_interfaces() { (( $+function[_netctl_command] )) || _netctl_command() { - [[ $words[1] = (start|stop|restart|switch-to|status|enable|disable|is-enabled|reenable) ]] && + [[ $words[1] = (start|stop|restart|switch-to|status|enable|disable|reenable|is-enabled|edit) ]] && compadd "${(f)$(find -L /etc/netctl -maxdepth 1 -type f -not -name '.*' -not -name '*~' -not -name '*.conf' -not -name '*.service' -printf "%f\n")}" } @@ -30,8 +30,9 @@ _netctl_commands() { 'status:Show runtime status of a profile' 'enable:Enable the systemd unit for a profile' 'disable:Disable the systemd unit for a profile' - 'is-enabled:Check whether a profile is enabled' 'reenable:Reenable the systemd unit for a profile' + 'is-enabled:Check whether a profile is enabled' + 'edit:Edit a profile' ) _describe "netctl commands" _commands } -- cgit v1.2.3-24-g4f1b