summaryrefslogtreecommitdiffstats
path: root/Completion/Unix/Command/_expand
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2017-10-10 10:00:57 +0100
committerPeter Stephenson <pws@zsh.org>2017-10-10 10:01:01 +0100
commitaeed51fdfcdc10b6f866c9ff794c5baa99d1b39e (patch)
treeb9a0d40bf2073343e124e2dbc8024448acce3613 /Completion/Unix/Command/_expand
parent41842: aliasing documentation update (diff)
downloadzsh-aeed51fdfcdc10b6f866c9ff794c5baa99d1b39e.tar
zsh-aeed51fdfcdc10b6f866c9ff794c5baa99d1b39e.tar.gz
zsh-aeed51fdfcdc10b6f866c9ff794c5baa99d1b39e.tar.bz2
zsh-aeed51fdfcdc10b6f866c9ff794c5baa99d1b39e.tar.lz
zsh-aeed51fdfcdc10b6f866c9ff794c5baa99d1b39e.tar.xz
zsh-aeed51fdfcdc10b6f866c9ff794c5baa99d1b39e.tar.zst
zsh-aeed51fdfcdc10b6f866c9ff794c5baa99d1b39e.zip
unposted: rename _expand command completion to avoid clash with completer
Diffstat (limited to 'Completion/Unix/Command/_expand')
-rw-r--r--Completion/Unix/Command/_expand16
1 files changed, 0 insertions, 16 deletions
diff --git a/Completion/Unix/Command/_expand b/Completion/Unix/Command/_expand
deleted file mode 100644
index 3f297dce2..000000000
--- a/Completion/Unix/Command/_expand
+++ /dev/null
@@ -1,16 +0,0 @@
-#compdef expand gexpand
-
-local -a args
-
-if _pick_variant gnu=GNU unix --version; then
- args=(
- '(-i --initial --help)'{-i,--initial}"[don't convert tabs after non blanks]"
- '(-t --tabs --version)'{-t+,--tabs=}'[specify tab width]:list of tab positions'
- '(* -)--help[display usage information]'
- '(* -)--version[output version information]'
- )
-else
- args=( -A "-*" '(-t --tabs)'{-t+,--tabs=}'[specify tab width]:list of tab positions' )
-fi
-
-_arguments -s -S "$args[@]" '*:file:_files'