Stop leaking variables into global namespace.
Set WARN_CREATE_GLOBAL to prevent recurrence. Fixes zsh-users/zsh-syntax-highlighting#192.
This commit is contained in:
parent
1467eae86d
commit
908c4fe150
|
@ -261,6 +261,7 @@ _zsh_highlight_main_highlighter_highlight_string()
|
|||
{
|
||||
setopt localoptions noksharrays
|
||||
local i j k style varflag
|
||||
local AA
|
||||
# Starting quote is at 1, so start parsing at offset 2 in the string.
|
||||
for (( i = 2 ; i < end_pos - start_pos ; i += 1 )) ; do
|
||||
(( j = i + start_pos - 1 ))
|
||||
|
|
|
@ -45,7 +45,7 @@ _zsh_highlight()
|
|||
# Store the previous command return code to restore it whatever happens.
|
||||
local ret=$?
|
||||
|
||||
setopt localoptions nowarncreateglobal
|
||||
setopt localoptions warncreateglobal
|
||||
|
||||
# Do not highlight if there are more than 300 chars in the buffer. It's most
|
||||
# likely a pasted command or a huge list of files in that case..
|
||||
|
@ -125,8 +125,8 @@ _zsh_highlight()
|
|||
|
||||
|
||||
} always {
|
||||
_ZSH_HIGHLIGHT_PRIOR_BUFFER=$BUFFER
|
||||
_ZSH_HIGHLIGHT_PRIOR_CURSOR=$CURSOR
|
||||
typeset -g _ZSH_HIGHLIGHT_PRIOR_BUFFER=$BUFFER
|
||||
typeset -gi _ZSH_HIGHLIGHT_PRIOR_CURSOR=$CURSOR
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue