1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 15:01:21 +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

@ -12,6 +12,10 @@
* 31221: Completion/Unix/Command/_git: Handle zero defined aliases
better
* 31222: Functions/Zle/down-line-or-beginning-search,
Functions/Zle/up-line-or-beginning-search: Don't trigger
warn_create_global
2013-04-04 Peter Stephenson <p.stephenson@samsung.com>
* 31203: Completion/Unix/Command/.distfiles,

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

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