mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Correctly move to previous line when looking for previous word, from
Derry Jing.
This commit is contained in:
		@@ -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. */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user