diff options
author | Oliver Kiddle <opk@zsh.org> | 2015-07-23 05:30:36 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2015-07-23 05:36:27 +0200 |
commit | b4aff3bc52e15be87304183b3ae959668192b48c (patch) | |
tree | d8560e6f5d048386043f8471d48251fa4733b395 /Src/Zle/zle.h | |
parent | a925d036fca112c159e45b5965fa856e4ce9be55 (diff) | |
download | zsh-b4aff3bc52e15be87304183b3ae959668192b48c.tar.gz zsh-b4aff3bc52e15be87304183b3ae959668192b48c.tar.xz zsh-b4aff3bc52e15be87304183b3ae959668192b48c.zip |
35824: allow highlighting of just pasted text and put text from bracketed paste in cut buffers
Diffstat (limited to 'Src/Zle/zle.h')
-rw-r--r-- | Src/Zle/zle.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/Zle/zle.h b/Src/Zle/zle.h index ab2428ea9..59f459185 100644 --- a/Src/Zle/zle.h +++ b/Src/Zle/zle.h @@ -429,8 +429,9 @@ struct region_highlight { * 0: region between point and mark * 1: isearch region * 2: suffix + * 3: pasted text */ -#define N_SPECIAL_HIGHLIGHTS (3) +#define N_SPECIAL_HIGHLIGHTS (4) #ifdef MULTIBYTE_SUPPORT |