summaryrefslogtreecommitdiffstats
path: root/cmd-paste-buffer.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-11 19:14:56 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-11 19:14:56 +0000
commit2f7198246e1074e0ff132036182c5a4050506073 (patch)
tree80ca083809957b6ecb99d60376fd5a3c6717ede6 /cmd-paste-buffer.c
parent289320a9b19e6be855756e54a545615026b099f8 (diff)
When pasting, translate \n into \r. This matches xterm and putty's behaviour,
and makes emacs happy when pasting into some modes. A new -r (raw) flag to paste-buffer pastes without the translation. From Kalle Olavi Niemitalo, thanks!
Diffstat (limited to 'cmd-paste-buffer.c')
-rw-r--r--cmd-paste-buffer.c35
1 files changed, 31 insertions, 4 deletions
diff --git a/cmd-paste-buffer.c b/cmd-paste-buffer.c
index 3f4cfe2e..c586e0fc 100644
--- a/cmd-paste-buffer.c
+++ b/cmd-paste-buffer.c
@@ -27,11 +27,12 @@
*/
int cmd_paste_buffer_exec(struct cmd *, struct cmd_ctx *);
+void cmd_paste_buffer_lf2cr(struct buffer *, const char *, size_t);
const struct cmd_entry cmd_paste_buffer_entry = {
"paste-buffer", "pasteb",
- "[-d] " CMD_BUFFER_WINDOW_USAGE,
- CMD_DFLAG,
+ "[-dr] " CMD_BUFFER_WINDOW_USAGE,
+ CMD_DFLAG|CMD_RFLAG,
cmd_buffer_init,
cmd_buffer_parse,
cmd_paste_buffer_exec,
@@ -63,8 +64,16 @@ cmd_paste_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
}
}
- if (pb != NULL && *pb->data != '\0')
- buffer_write(w->active->out, pb->data, strlen(pb->data));
+ if (pb != NULL && *pb->data != '\0') {
+ /* -r means raw data without LF->CR conversion. */
+ if (data->flags & CMD_RFLAG) {
+ buffer_write(
+ w->active->out, pb->data, strlen(pb->data));
+ } else {
+ cmd_paste_buffer_lf2cr(
+ w->active->out, pb->data, strlen(pb->data));
+ }
+ }
/* Delete the buffer if -d. */
if (data->flags & CMD_DFLAG) {
@@ -76,3 +85,21 @@ cmd_paste_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
return (0);
}
+
+/* Add bytes to a buffer but change every '\n' to '\r'. */
+void
+cmd_paste_buffer_lf2cr(struct buffer *b, const char *data, size_t size)
+{
+ const char *end = data + size;
+ const char *lf;
+
+ while ((lf = memchr(data, '\n', end - data)) != NULL) {
+ if (lf != data)
+ buffer_write(b, data, lf - data);
+ buffer_write8(b, '\r');
+ data = lf + 1;
+ }
+
+ if (end != data)
+ buffer_write(b, data, end - data);
+}