Revert "Declare more global variables"

This reverts commit ec88096611.
This commit is contained in:
Alyssa Ross 2016-11-02 01:23:42 +00:00
parent ec88096611
commit d26aaa6594

View file

@ -204,7 +204,7 @@ _history-substring-search-begin() {
# in ZSH, so we do not need to actually search the history. This should
# speed things up a little.
#
typeset -g _history_substring_search_query=
_history_substring_search_query=
typeset -g _history_substring_search_raw_matches=()
else
@ -219,7 +219,6 @@ _history-substring-search-begin() {
# we put an extra "\\" before meta characters such as "\(" and "\)",
# so that they become "\\\(" and "\\\)".
#
typeset -g MBEGIN MEND
local escaped_query=${BUFFER//(#m)[\][()|\\*?#<>~^]/\\$MATCH}
#