aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2014-08-11 22:18:16 +0000
committernicm <nicm>2014-08-11 22:18:16 +0000
commit29d20a55b645600feca1b54a13333e598336dad2 (patch)
treeea4fb9fdc5ebf7c6f7ba1899f203575668856e51 /tmux.h
parentf518a077b176e65a30a187af21b00b0b9031dad7 (diff)
downloadrtmux-29d20a55b645600feca1b54a13333e598336dad2.tar.gz
rtmux-29d20a55b645600feca1b54a13333e598336dad2.tar.bz2
rtmux-29d20a55b645600feca1b54a13333e598336dad2.zip
Fix two copy mode problems:
1. In vi mode the selection doesn't include the last character if you moved the cursor up or left. 2. In emacs mode the selection includes the last character if you moved the cursor to the left. From Balazs Kezes.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index a0cbbd41..bfc70544 100644
--- a/tmux.h
+++ b/tmux.h
@@ -794,6 +794,7 @@ LIST_HEAD(joblist, job);
struct screen_sel {
int flag;
int rectflag;
+ int modekeys;
u_int sx;
u_int sy;