summaryrefslogtreecommitdiffstats
path: root/window-copy.c
diff options
context:
space:
mode:
authornicm <nicm>2021-06-10 07:58:42 +0000
committernicm <nicm>2021-06-10 07:58:42 +0000
commit43514f4af612405c0dc07abfdee54bae0889989e (patch)
tree668c5a79e4a56cc17dcdf5c21a50c836647f0665 /window-copy.c
parent8d75542986a54fdedda9d8ad1fc37dd83f7f05c9 (diff)
Fix rectangle selection, from Anindya Mukherjee, GitHub issue 2709.
Diffstat (limited to 'window-copy.c')
-rw-r--r--window-copy.c37
1 files changed, 27 insertions, 10 deletions
diff --git a/window-copy.c b/window-copy.c
index 2f33a23a..31875739 100644
--- a/window-copy.c
+++ b/window-copy.c
@@ -1102,10 +1102,13 @@ static enum window_copy_cmd_action
window_copy_cmd_cursor_right(struct window_copy_cmd_state *cs)
{
struct window_mode_entry *wme = cs->wme;
+ struct window_copy_mode_data *data = wme->data;
u_int np = wme->prefix;
- for (; np != 0; np--)
- window_copy_cursor_right(wme, 0);
+ for (; np != 0; np--) {
+ window_copy_cursor_right(wme, data->screen.sel != NULL &&
+ data->rectflag);
+ }
return (WINDOW_COPY_CMD_NOTHING);
}
@@ -4427,10 +4430,12 @@ window_copy_cursor_up(struct window_mode_entry *wme, int scroll_only)
struct window_copy_mode_data *data = wme->data;
struct screen *s = &data->screen;
u_int ox, oy, px, py;
+ int norectsel;
+ norectsel = data->screen.sel == NULL || !data->rectflag;
oy = screen_hsize(data->backing) + data->cy - data->oy;
ox = window_copy_find_length(wme, oy);
- if (data->cx != ox) {
+ if (norectsel && data->cx != ox) {
data->lastcx = data->cx;
data->lastsx = ox;
}
@@ -4439,7 +4444,8 @@ window_copy_cursor_up(struct window_mode_entry *wme, int scroll_only)
window_copy_other_end(wme);
if (scroll_only || data->cy == 0) {
- data->cx = data->lastcx;
+ if (norectsel)
+ data->cx = data->lastcx;
window_copy_scroll_down(wme, 1);
if (scroll_only) {
if (data->cy == screen_size_y(s) - 1)
@@ -4448,7 +4454,11 @@ window_copy_cursor_up(struct window_mode_entry *wme, int scroll_only)
window_copy_redraw_lines(wme, data->cy, 2);
}
} else {
- window_copy_update_cursor(wme, data->lastcx, data->cy - 1);
+ if (norectsel) {
+ window_copy_update_cursor(wme, data->lastcx,
+ data->cy - 1);
+ } else
+ window_copy_update_cursor(wme, data->cx, data->cy - 1);
if (window_copy_update_selection(wme, 1, 0)) {
if (data->cy == screen_size_y(s) - 1)
window_copy_redraw_lines(wme, data->cy, 1);
@@ -4457,7 +4467,7 @@ window_copy_cursor_up(struct window_mode_entry *wme, int scroll_only)
}
}
- if (data->screen.sel == NULL || !data->rectflag) {
+ if (norectsel) {
py = screen_hsize(data->backing) + data->cy - data->oy;
px = window_copy_find_length(wme, py);
if ((data->cx >= data->lastsx && data->cx != px) ||
@@ -4494,10 +4504,12 @@ window_copy_cursor_down(struct window_mode_entry *wme, int scroll_only)
struct window_copy_mode_data *data = wme->data;
struct screen *s = &data->screen;
u_int ox, oy, px, py;
+ int norectsel;
+ norectsel = data->screen.sel == NULL || !data->rectflag;
oy = screen_hsize(data->backing) + data->cy - data->oy;
ox = window_copy_find_length(wme, oy);
- if (data->cx != ox) {
+ if (norectsel && data->cx != ox) {
data->lastcx = data->cx;
data->lastsx = ox;
}
@@ -4506,17 +4518,22 @@ window_copy_cursor_down(struct window_mode_entry *wme, int scroll_only)
window_copy_other_end(wme);
if (scroll_only || data->cy == screen_size_y(s) - 1) {
- data->cx = data->lastcx;
+ if (norectsel)
+ data->cx = data->lastcx;
window_copy_scroll_up(wme, 1);
if (scroll_only && data->cy > 0)
window_copy_redraw_lines(wme, data->cy - 1, 2);
} else {
- window_copy_update_cursor(wme, data->lastcx, data->cy + 1);
+ if (norectsel) {
+ window_copy_update_cursor(wme, data->lastcx,
+ data->cy + 1);
+ } else
+ window_copy_update_cursor(wme, data->cx, data->cy + 1);
if (window_copy_update_selection(wme, 1, 0))
window_copy_redraw_lines(wme, data->cy - 1, 2);
}
- if (data->screen.sel == NULL || !data->rectflag) {
+ if (norectsel) {
py = screen_hsize(data->backing) + data->cy - data->oy;
px = window_copy_find_length(wme, py);
if ((data->cx >= data->lastsx && data->cx != px) ||