diff options
author | Xin Li <delphij@FreeBSD.org> | 2015-05-21 12:34:04 -0700 |
---|---|---|
committer | Xin Li <delphij@FreeBSD.org> | 2015-05-21 12:36:21 -0700 |
commit | 743be91b207d4617e68b04a43311438652cec63d (patch) | |
tree | 1135c9ca7451868836da937a513a5aafccc32bfa /plugins/history-substring-search/history-substring-search.zsh | |
parent | 140034605edd0f72c548685d39e49687a44c1b23 (diff) | |
download | zsh-743be91b207d4617e68b04a43311438652cec63d.tar.gz zsh-743be91b207d4617e68b04a43311438652cec63d.tar.bz2 zsh-743be91b207d4617e68b04a43311438652cec63d.zip |
Don't leak extendedglob to global environment.
Diffstat (limited to 'plugins/history-substring-search/history-substring-search.zsh')
-rw-r--r-- | plugins/history-substring-search/history-substring-search.zsh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/history-substring-search/history-substring-search.zsh b/plugins/history-substring-search/history-substring-search.zsh index 22f03dd6d..65f0750db 100644 --- a/plugins/history-substring-search/history-substring-search.zsh +++ b/plugins/history-substring-search/history-substring-search.zsh @@ -175,7 +175,6 @@ fi # implementation details #----------------------------------------------------------------------------- -setopt extendedglob zmodload -F zsh/parameter # @@ -284,6 +283,7 @@ if [[ $+functions[_zsh_highlight] -eq 0 ]]; then fi function _history-substring-search-begin() { + setopt localoptions extendedglob _history_substring_search_move_cursor_eol=false _history_substring_search_query_highlight= @@ -350,6 +350,7 @@ function _history-substring-search-begin() { } function _history-substring-search-end() { + setopt localoptions extendedglob _history_substring_search_result=$BUFFER # move the cursor to the end of the command line |