diff options
author | Peter Stephenson <pws@zsh.org> | 2014-08-06 15:03:44 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2014-08-06 15:03:44 +0100 |
commit | c810a072e220914444b38b87aaee5ae40edb6466 (patch) | |
tree | 5106a04afdf3bb26982774baea5705d2d07a656f /Completion/openSUSE/Command/_SuSEconfig | |
parent | 22ee3a4fd9698b221d10ecda501d7579132e95fc (diff) | |
download | zsh-c810a072e220914444b38b87aaee5ae40edb6466.tar.gz zsh-c810a072e220914444b38b87aaee5ae40edb6466.tar.xz zsh-c810a072e220914444b38b87aaee5ae40edb6466.zip |
Rename _SuSEconfig to _SUSEconfig
Diffstat (limited to 'Completion/openSUSE/Command/_SuSEconfig')
-rw-r--r-- | Completion/openSUSE/Command/_SuSEconfig | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Completion/openSUSE/Command/_SuSEconfig b/Completion/openSUSE/Command/_SuSEconfig deleted file mode 100644 index d50828529..000000000 --- a/Completion/openSUSE/Command/_SuSEconfig +++ /dev/null @@ -1,28 +0,0 @@ -#compdef SuSEconfig - -local curcontext="$curcontext" state line -typeset -A opt_args - -if [[ -z "$_SuSEconfig_modules" ]]; then - for i in /sbin/conf.d/SuSEconfig.*; do - case $i in *.rpm*|*.swap|*.bak|*.orig|*~|\#*) continue;; esac - _SuSEconfig_modules=($_SuSEconfig_modules ${i##*/SuSEconfig.}) - done -fi - - -_arguments \ - '--help' \ - '--quick' \ - '--force' \ - '--verbose' \ - '--nonewpackage' \ - '--module:module:->module' && return 0 - -case $state in - module) compadd $_SuSEconfig_modules ;; -esac - -# Usage: SuSEconfig [--quick|--nonewpackage|--force|--verbose] [--module name] - - |