From 5677545d80155bf4ed1ceddbf2ad94997708f950 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 11 Mar 2012 23:01:20 +0000 Subject: Always remember last cursor position when moving up or down, not just for if crossing zero length lines. From Itay Perl. --- usr.bin/tmux/window-copy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/tmux/window-copy.c b/usr.bin/tmux/window-copy.c index f376c204652..ed4232a091a 100644 --- a/usr.bin/tmux/window-copy.c +++ b/usr.bin/tmux/window-copy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-copy.c,v 1.76 2011/12/04 16:18:01 nicm Exp $ */ +/* $OpenBSD: window-copy.c,v 1.77 2012/03/11 23:01:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1629,7 +1629,7 @@ window_copy_cursor_up(struct window_pane *wp, int scroll_only) oy = screen_hsize(data->backing) + data->cy - data->oy; ox = window_copy_find_length(wp, oy); - if (ox != 0) { + if (data->cx != ox) { data->lastcx = data->cx; data->lastsx = ox; } @@ -1671,7 +1671,7 @@ window_copy_cursor_down(struct window_pane *wp, int scroll_only) oy = screen_hsize(data->backing) + data->cy - data->oy; ox = window_copy_find_length(wp, oy); - if (ox != 0) { + if (data->cx != ox) { data->lastcx = data->cx; data->lastsx = ox; } -- cgit v1.2.3