1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-06-17 09:08:04 +02:00

zsh-workers:6118

This commit is contained in:
Tanaka Akira 1999-04-27 17:37:07 +00:00
parent 443c0f7f05
commit 5070e79545

View file

@ -0,0 +1,11 @@
#autoload
# If the current completion is in quotes, add the closing quote.
# This can clash with some of the more sophisticated forms of completion
if [[ -n $compstate[quote] && $RBUFFER != *${compstate[quote]}* ]]; then
compstate[restore]=''
ISUFFIX="$ISUFFIX$compstate[quote]"
fi
return 1