mirror of
https://github.com/tmux/tmux.git
synced 2025-01-05 23:38:48 +00:00
Correctly move to previous line when looking for previous word, from
Derry Jing.
This commit is contained in:
parent
1c78155e70
commit
afe4ea4250
@ -4535,14 +4535,14 @@ window_copy_cursor_previous_word_pos(struct window_mode_entry *wme,
|
||||
separators))
|
||||
break;
|
||||
} else {
|
||||
if (data->cy == 0 &&
|
||||
if (py == 0 ||
|
||||
(data->cy == 0 &&
|
||||
(screen_hsize(data->backing) == 0 ||
|
||||
data->oy >=
|
||||
screen_hsize(data->backing) - 1))
|
||||
screen_hsize(data->backing) - 1)))
|
||||
goto out;
|
||||
|
||||
py = screen_hsize(data->backing) + data->cy -
|
||||
data->oy;
|
||||
py--;
|
||||
px = window_copy_find_length(wme, py);
|
||||
|
||||
/* Stop if separator at EOL. */
|
||||
|
Loading…
Reference in New Issue
Block a user