about summary refs log tree commit diff
path: root/Completion/User
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/User')
-rw-r--r--Completion/User/_sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/Completion/User/_sh b/Completion/User/_sh
deleted file mode 100644
index 22379856e..000000000
--- a/Completion/User/_sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#compdef sh ksh bash zsh csh tcsh rc
-
-if (( CURRENT == ${words[(i)-c]} + 1 )); then
-  compset -q
-  _normal
-else
-  local n=${words[(b:2:i)[^-]*]}
-  if (( n <= CURRENT )); then
-    compset -n $n
-    _normal && return 0
-  fi
-  _default
-fi