diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-12-17 14:01:23 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-12-17 14:01:23 +0000 |
commit | a9421446d26c7b67f238082fd8a643f398f556fd (patch) | |
tree | 201f1d725f52865eec014ad8a3c98bc09ac8dbad /Src | |
parent | 246bcd10a7aeb54094ba02f032e682b759ee4b0b (diff) | |
download | zsh-a9421446d26c7b67f238082fd8a643f398f556fd.tar.gz zsh-a9421446d26c7b67f238082fd8a643f398f556fd.tar.xz zsh-a9421446d26c7b67f238082fd8a643f398f556fd.zip |
Mikael: users/15653: zle_highlight=(none) turns off suffix highlighting
unposted: note suffix highlighting in NEWS
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/zle_refresh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_refresh.c b/Src/Zle/zle_refresh.c index 137065513..2a1907c76 100644 --- a/Src/Zle/zle_refresh.c +++ b/Src/Zle/zle_refresh.c @@ -363,7 +363,7 @@ zle_set_highlight(void) /* reset attributes for consistency... usually unnecessary */ special_atr_on = default_atr_on = 0; special_atr_on_set = region_atr_on_set = - isearch_atr_on_set = 1; + isearch_atr_on_set = suffix_atr_on-set = 1; } else if (strpfx("default:", *atrs)) { match_highlight(*atrs + 8, &default_atr_on); } else if (strpfx("special:", *atrs)) { |