diff options
Diffstat (limited to 'contrib/zsh-completion')
-rw-r--r-- | contrib/zsh-completion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/zsh-completion b/contrib/zsh-completion index 77bf1f9..7695082 100644 --- a/contrib/zsh-completion +++ b/contrib/zsh-completion @@ -12,7 +12,7 @@ _wireless_interfaces() { (( $+function[_netctl_command] )) || _netctl_command() { [[ $words[1] = (start|stop|restart|switch-to|status|enable|disable|reenable) ]] && - compadd "${(f)$(find -L /etc/network.d -maxdepth 1 -type f -not -name '.*' -not -name '*~' -not -name '*.conf' -not -name '*.service' -printf "%f\n")}" + compadd "${(f)$(find -L /etc/netctl -maxdepth 1 -type f -not -name '.*' -not -name '*~' -not -name '*.conf' -not -name '*.service' -printf "%f\n")}" } |