about summary refs log tree commit diff
path: root/Completion/Base/_command_names
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-10-28 08:13:52 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-10-28 08:13:52 +0000
commit8066c8066520d734d22ab17992bd3787777d4130 (patch)
tree22da787359877e31a8a9959c30e69c7e1176a2e1 /Completion/Base/_command_names
parentb63dfb564eb8d48a8909998d39541c3afe9ae0e2 (diff)
downloadzsh-8066c8066520d734d22ab17992bd3787777d4130.tar.gz
zsh-8066c8066520d734d22ab17992bd3787777d4130.tar.xz
zsh-8066c8066520d734d22ab17992bd3787777d4130.zip
zsh-workers/8471
Diffstat (limited to 'Completion/Base/_command_names')
-rw-r--r--Completion/Base/_command_names8
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Base/_command_names b/Completion/Base/_command_names
index 79bd46e84..a640e196b 100644
--- a/Completion/Base/_command_names
+++ b/Completion/Base/_command_names
@@ -24,13 +24,13 @@ compadd "$expl[@]" "$@" - "${(k@)commands}" && ret=0
 
 if [[ -z "$ext" ]]; then
   _description expl 'builtin command'
-  compadd "$expl[@]" "$@" - "${(k@)builtins[(R)^?disabled*]}" && ret=0
+  compadd "$expl[@]" "$@" - "${(k@)builtins}" && ret=0
   _description expl 'shell function'
-  compadd "$expl[@]" "$@" - "${(k@)functions[(R)^?disabled*]}" && ret=0
+  compadd "$expl[@]" "$@" - "${(k@)functions}" && ret=0
   _description expl 'alias'
-  compadd "$expl[@]" "$@" - "${(k@)raliases[(R)^?disabled*]}" && ret=0
+  compadd "$expl[@]" "$@" - "${(k@)raliases}" && ret=0
   _description expl 'reserved word'
-  compadd "$expl[@]" "$@" - "${(k@)reswords[(R)^?disabled*]}" && ret=0
+  compadd "$expl[@]" "$@" - "${(k@)reswords}" && ret=0
 fi
 
 if [[ nm -eq compstate[nmatches] ]]; then