mirror of
https://github.com/zsh-users/zsh-syntax-highlighting.git
synced 2025-06-05 12:36:30 +08:00
Merge fb9a8a67aa
into 5a98cd3a10
This commit is contained in:
commit
673dc01fec
@ -254,7 +254,15 @@ _zsh_highlight_main_highlighter()
|
||||
# end_pos was advanced by $offset (via start_pos)
|
||||
# and by $#arg. Note the `start_pos=$end_pos`
|
||||
# below.
|
||||
proc_buf="${proc_buf[offset + $#arg + 1,-1]}"
|
||||
#
|
||||
# As for the [,len]. We could use [,len-start_pos+offset]
|
||||
# here, but to make it easier on eyes, we use len and
|
||||
# rely on the fact that Zsh simply handles that. The
|
||||
# len-start_pos+offset is length of proc_buf because
|
||||
# we're chopping it to match current start_pos, so its
|
||||
# length matches previous start_pos.
|
||||
# Why [,-1] is slower than [,length] isn't clear.
|
||||
proc_buf="${proc_buf[offset + $#arg + 1,len]}"
|
||||
|
||||
if [[ -n ${interactive_comments+'set'} && $arg[1] == $histchars[3] ]]; then
|
||||
if [[ $this_word == *(':regular:'|':start:')* ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user