diff options
author | nicm <nicm> | 2014-11-06 09:17:25 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-11-06 09:17:25 +0000 |
commit | e4bf1e5128a6981b47258e1865eb5416d59fe819 (patch) | |
tree | b954141358062a4592db6269d7a521100545fc19 /tmux.h | |
parent | 79f52825b58e89404b43cb8d466d04a520de4511 (diff) | |
download | rtmux-e4bf1e5128a6981b47258e1865eb5416d59fe819.tar.gz rtmux-e4bf1e5128a6981b47258e1865eb5416d59fe819.tar.bz2 rtmux-e4bf1e5128a6981b47258e1865eb5416d59fe819.zip |
Add V for select line with vi(1) keys. From Juho Pohjala.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; |