From e4bf1e5128a6981b47258e1865eb5416d59fe819 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 6 Nov 2014 09:17:25 +0000 Subject: Add V for select line with vi(1) keys. From Juho Pohjala. --- tmux.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index d310c7af..7e520641 100644 --- a/tmux.h +++ b/tmux.h @@ -712,6 +712,12 @@ LIST_HEAD(joblist, job); struct screen_sel { int flag; int rectflag; + enum { + LINE_SEL_NONE, + LINE_SEL_LEFT_RIGHT, + LINE_SEL_RIGHT_LEFT, + } lineflag; + int modekeys; u_int sx; -- cgit