Rename escape command function

This commit is contained in:
Eric Freese
2016-03-04 19:22:19 -07:00
parent 73f774bd5d
commit ee6dde9ee8
5 changed files with 15 additions and 15 deletions

View File

@@ -17,7 +17,7 @@
#
_zsh_autosuggest_strategy_match_prev_cmd() {
local prefix="$(_zsh_autosuggest_escape_command_prefix "$1")"
local prefix="$(_zsh_autosuggest_escape_command "$1")"
# Get all history event numbers that correspond to history
# entries that match pattern $prefix*
@@ -29,7 +29,7 @@ _zsh_autosuggest_strategy_match_prev_cmd() {
# Get the previously executed command
local prev_cmd="$(_zsh_autosuggest_prev_command)"
prev_cmd="$(_zsh_autosuggest_escape_command_prefix $prev_cmd)"
prev_cmd="$(_zsh_autosuggest_escape_command $prev_cmd)"
# Iterate up to the first 200 history event numbers that match $prefix
for key in "${(@)history_match_keys[1,200]}"; do