I have the following ~/.tmux.conf. When I copy text I select the text, the 
text got automatically copied (in Mac Terminal). But the screen got reset 
too. I don't want this behavior. I want to select the text then type 
command-C to copy the text without resetting the screen. Is there way to 
get this behavior in the configuration? Thanks.

# Send prefix
set-option -g prefix C-a
set-option -g repeat-time 2000
bind-key c-R source-file ~/.tmux.conf \; display-message "~/.tmux.conf 
sourced"

bind-key v split-window -h -c "#{pane_current_path}" #\; switch-client -T 
prefix
bind-key s split-window -v -c "#{pane_current_path}" #\; switch-client -T 
prefix

bind-key -r h select-pane -L
bind-key -r j select-pane -D
bind-key -r k select-pane -U
bind-key -r l select-pane -R

bind-key -r - resize-pane -D
bind-key -r + resize-pane -U
bind-key -r < resize-pane -L
bind-key -r > resize-pane -R

bind-key c new-window -c "#{pane_current_path}"

bind-key -r n next-window
bind-key -r p previous-window

#bind-key -T root C-'[' next-window
#bind-key -T root C-']' previous-window

set-option -g mode-keys vi
bind-key -T copy-mode-vi v send-keys -X begin-selection
#bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 
"reattach-to-user-namespace pbcopy"

bind-key -T prefix P paste-buffer

set-option -g history-limit 10000
set-option -g mouse on

# https://github.com/tmux/tmux/issues/1113
#bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X 
copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
#bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel 
"cat >/tmp/foo"
bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel 
pbcopy

-- 
You received this message because you are subscribed to the Google Groups 
"tmux-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/tmux-users/90509f4f-41ea-4396-928d-7536e4adbf19n%40googlegroups.com.

Reply via email to