mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Change copy mode to make copy of the pane history so it does not need to
freeze updates (which does not play nicely with some applications, a longstanding problem) and will allow some other changes later. From Anindya Mukherjee.
This commit is contained in:
		@@ -387,6 +387,7 @@ key_bindings_init(void)
 | 
			
		||||
		"bind -Tcopy-mode g command-prompt -p'(goto line)' 'send -X goto-line \"%%%\"'",
 | 
			
		||||
		"bind -Tcopy-mode n send -X search-again",
 | 
			
		||||
		"bind -Tcopy-mode q send -X cancel",
 | 
			
		||||
		"bind -Tcopy-mode r send -X refresh-from-pane",
 | 
			
		||||
		"bind -Tcopy-mode t command-prompt -1p'(jump to forward)' 'send -X jump-to-forward \"%%%\"'",
 | 
			
		||||
		"bind -Tcopy-mode Home send -X start-of-line",
 | 
			
		||||
		"bind -Tcopy-mode End send -X end-of-line",
 | 
			
		||||
@@ -489,6 +490,7 @@ key_bindings_init(void)
 | 
			
		||||
		"bind -Tcopy-mode-vi n send -X search-again",
 | 
			
		||||
		"bind -Tcopy-mode-vi o send -X other-end",
 | 
			
		||||
		"bind -Tcopy-mode-vi q send -X cancel",
 | 
			
		||||
		"bind -Tcopy-mode-vi r send -X refresh-from-pane",
 | 
			
		||||
		"bind -Tcopy-mode-vi t command-prompt -1p'(jump to forward)' 'send -X jump-to-forward \"%%%\"'",
 | 
			
		||||
		"bind -Tcopy-mode-vi v send -X rectangle-toggle",
 | 
			
		||||
		"bind -Tcopy-mode-vi w send -X next-word",
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user