Merge pull request #267 from isaacwhanson/fixes/match_prev_cmd_special_chars

escape pattern-matching chars on $prefix for match_prev_cmd strategy
This commit is contained in:
Eric Freese 2017-09-12 09:19:17 -06:00 committed by GitHub
commit ae4c344e82
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ _zsh_autosuggest_strategy_match_prev_cmd() {
# Get all history event numbers that correspond to history
# entries that match pattern $prefix*
local history_match_keys
history_match_keys=(${(k)history[(R)$prefix*]})
history_match_keys=(${(k)history[(R)${(b)prefix}*]})
# By default we use the first history number (most recent history entry)
local histkey="${history_match_keys[1]}"

View file

@ -533,7 +533,7 @@ _zsh_autosuggest_strategy_match_prev_cmd() {
# Get all history event numbers that correspond to history
# entries that match pattern $prefix*
local history_match_keys
history_match_keys=(${(k)history[(R)$prefix*]})
history_match_keys=(${(k)history[(R)${(b)prefix}*]})
# By default we use the first history number (most recent history entry)
local histkey="${history_match_keys[1]}"