mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Don't leak extendedglob to global environment.
This commit is contained in:
parent
140034605e
commit
743be91b20
1 changed files with 2 additions and 1 deletions
|
@ -175,7 +175,6 @@ fi
|
||||||
# implementation details
|
# implementation details
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
setopt extendedglob
|
|
||||||
zmodload -F zsh/parameter
|
zmodload -F zsh/parameter
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -284,6 +283,7 @@ if [[ $+functions[_zsh_highlight] -eq 0 ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
function _history-substring-search-begin() {
|
function _history-substring-search-begin() {
|
||||||
|
setopt localoptions extendedglob
|
||||||
_history_substring_search_move_cursor_eol=false
|
_history_substring_search_move_cursor_eol=false
|
||||||
_history_substring_search_query_highlight=
|
_history_substring_search_query_highlight=
|
||||||
|
|
||||||
|
@ -350,6 +350,7 @@ function _history-substring-search-begin() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _history-substring-search-end() {
|
function _history-substring-search-end() {
|
||||||
|
setopt localoptions extendedglob
|
||||||
_history_substring_search_result=$BUFFER
|
_history_substring_search_result=$BUFFER
|
||||||
|
|
||||||
# move the cursor to the end of the command line
|
# move the cursor to the end of the command line
|
||||||
|
|
Loading…
Reference in a new issue