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 /mode-key.c | |
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 'mode-key.c')
-rw-r--r-- | mode-key.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -289,6 +289,7 @@ const struct mode_key_entry mode_key_vi_copy[] = { { 'M', 0, MODEKEYCOPY_MIDDLELINE }, { 'N', 0, MODEKEYCOPY_SEARCHREVERSE }, { 'T', 0, MODEKEYCOPY_JUMPTOBACK }, + { 'V', 0, MODEKEYCOPY_SELECTLINE }, { 'W', 0, MODEKEYCOPY_NEXTSPACE }, { '\002' /* C-b */, 0, MODEKEYCOPY_PREVIOUSPAGE }, { '\003' /* C-c */, 0, MODEKEYCOPY_CANCEL }, |