From 2f7198246e1074e0ff132036182c5a4050506073 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 11 Jul 2009 19:14:56 +0000 Subject: 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! --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index a2d3063d..02f08ed4 100644 --- a/tmux.h +++ b/tmux.h @@ -858,6 +858,7 @@ struct cmd_entry { #define CMD_UFLAG 0x100 #define CMD_BIGDFLAG 0x200 #define CMD_BIGUFLAG 0x400 +#define CMD_RFLAG 0x800 int flags; -- cgit