zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH] Have zle_highlight=(none) disable paste highlighting
@ 2015-12-31  0:17 Daniel Shahaf
  0 siblings, 0 replies; only message in thread
From: Daniel Shahaf @ 2015-12-31  0:17 UTC (permalink / raw)
  To: zsh-workers

Before this change, zle_highlight=(paste:none) worked,
but zle_highlight=(none) didn't.

---
Thanks to Mikael for bringing this up.

diff --git a/Src/Zle/zle_refresh.c b/Src/Zle/zle_refresh.c
index 6facff4..3d2471e 100644
--- a/Src/Zle/zle_refresh.c
+++ b/Src/Zle/zle_refresh.c
@@ -338,9 +338,9 @@ zle_set_highlight(void)
 	for (; *atrs; atrs++) {
 	    if (!strcmp(*atrs, "none")) {
 		/* reset attributes for consistency... usually unnecessary */
-		special_atr_on = default_atr_on =
-		    paste_atr_on_set = 0;
-		special_atr_on_set = region_atr_on_set =
+		special_atr_on = default_atr_on = 0;
+		special_atr_on_set = 1;
+		paste_atr_on_set = region_atr_on_set =
 		    isearch_atr_on_set = suffix_atr_on_set = 1;
 	    } else if (strpfx("default:", *atrs)) {
 		match_highlight(*atrs + 8, &default_atr_on);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-12-31  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-31  0:17 [PATCH] Have zle_highlight=(none) disable paste highlighting Daniel Shahaf

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).