zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH] bracketed-paste: change quoting style
@ 2015-08-11 22:09 Daniel Shahaf
  2015-08-12  1:08 ` Mikael Magnusson
  2015-08-13 14:49 ` Oliver Kiddle
  0 siblings, 2 replies; 10+ messages in thread
From: Daniel Shahaf @ 2015-08-11 22:09 UTC (permalink / raw)
  To: zsh-workers

Make bracketed-paste use ''-quoting instead of \-quoting (when NUMERIC
is nonzero).

It's a bikeshed, of course, but I think '' is more readable.

diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c
index 502e41e..5f2a580 100644
--- a/Src/Zle/zle_misc.c
+++ b/Src/Zle/zle_misc.c
@@ -779,7 +779,7 @@ bracketedpaste(char **args)
 	int n;
 	ZLE_STRING_T wpaste;
 	wpaste = stringaszleline((zmult == 1) ? pbuf :
-	    quotestring(pbuf, NULL, QT_BACKSLASH), 0, &n, NULL, NULL);
+	    quotestring(pbuf, NULL, QT_SINGLE_OPTIONAL), 0, &n, NULL, NULL);
 	cuttext(wpaste, n, CUT_REPLACE);
 	if (!(zmod.flags & MOD_VIBUF)) {
 	    kct = -1;


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-08-17 22:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-11 22:09 [PATCH] bracketed-paste: change quoting style Daniel Shahaf
2015-08-12  1:08 ` Mikael Magnusson
2015-08-12  2:52   ` Bart Schaefer
2015-08-12  3:13     ` Mikael Magnusson
2015-08-12  6:44       ` Bart Schaefer
2015-08-13 14:49 ` Oliver Kiddle
2015-08-13 16:20   ` Bart Schaefer
2015-08-13 23:19     ` Daniel Shahaf
2015-08-13 23:57       ` Bart Schaefer
2015-08-17 21:59         ` 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).