39884: fix history-beginning-search-menu for history lines containing a pipe character

This commit is contained in:
Oliver Kiddle 2016-11-09 16:53:23 +01:00
parent dae3116026
commit 488d73c07d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2016-11-09 Oliver Kiddle <opk@zsh.org>
* 39884: Functions/Zle/history-beginning-search-menu:
fix for history lines containing a pipe character
2016-11-09 Barton E. Schaefer <schaefer@zsh.org>
* 39882: Doc/Zsh/expn.yo: mention ${name:/pattern/replacement}

View file

@ -112,7 +112,7 @@ fi
# go to the last one. This allows accept-line-and-down-history etc.
# to work.
local -a lines
local matchq=${matches[$chars]//(#m)[\][()\\*?#<>~^]/\\$MATCH}
local matchq=${matches[$chars]//(#m)[\][|()\\*?#<>~^]/\\$MATCH}
lines=(${(kon)history[(R)$matchq]})
HISTNO=$lines[-1]