1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-04 10:41:11 +02:00

moved from Completion/Builtins/_trap

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:31:25 +00:00
parent d945d1d630
commit c95d0a8bdd

View file

@ -0,0 +1,10 @@
#compdef trap
local expl
if [[ CURRENT -eq 2 ]]; then
compset -q
_normal
else
_signals -a
fi