about summary refs log tree commit diff
path: root/Completion/Zsh/Command
diff options
context:
space:
mode:
authorMatthew Martin <phy1729@gmail.com>2019-03-21 19:46:22 -0500
committerMatthew Martin <phy1729@gmail.com>2019-03-21 22:04:55 -0500
commit8e4566e5365e4fbefec55a7c28432dd241987ea6 (patch)
tree25d7c9ece82cda52dba69995ca9757c883801d7d /Completion/Zsh/Command
parent922cf4983081e46af20075034bd6f5f670d1a2f7 (diff)
downloadzsh-8e4566e5365e4fbefec55a7c28432dd241987ea6.tar.gz
zsh-8e4566e5365e4fbefec55a7c28432dd241987ea6.tar.xz
zsh-8e4566e5365e4fbefec55a7c28432dd241987ea6.zip
44144: _builtin: Append "builtin" to precommands
Diffstat (limited to 'Completion/Zsh/Command')
-rw-r--r--Completion/Zsh/Command/_builtin2
1 files changed, 2 insertions, 0 deletions
diff --git a/Completion/Zsh/Command/_builtin b/Completion/Zsh/Command/_builtin
index 9fb6acf7b..a77af9879 100644
--- a/Completion/Zsh/Command/_builtin
+++ b/Completion/Zsh/Command/_builtin
@@ -1,5 +1,7 @@
 #compdef builtin
 
+precommands+=(builtin)
+
 if (( $CURRENT > 2 )); then
   shift words
   (( CURRENT -- ))