1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 04:30:24 +02:00

31222: Stop {up,down}-line-or-beginning-search from triggering warn_create_global

This is a followup to 30995 taking Peter's suggestions from 30997 into
account.
This commit is contained in:
Frank Terbeck 2013-04-05 20:39:52 +02:00
parent abb32da0e7
commit e619a7353a
3 changed files with 8 additions and 0 deletions

View file

@ -3,6 +3,8 @@
emulate -L zsh
typeset -g __searching __savecursor
if [[ ${+NUMERIC} -eq 0 &&
( $LASTWIDGET = $__searching || $RBUFFER != *$'\n'* ) ]]
then

View file

@ -3,6 +3,8 @@
emulate -L zsh
typeset -g __searching __savecursor
if [[ $LBUFFER == *$'\n'* ]]; then
zle .up-line-or-history
__searching=''