You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i'm trying to follow a guide in which it's explained how to get copy/paste working without shift.
but with the following config :
set -g mouse on
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @yank_action 'copy-pipe-no-clear'
set -g @override_copy_command 'xsel -i --clipboard'
set -g @yank_selection_mouse 'primary'
set -g @yank_selection 'primary'
bind -T copy-mode C-c send -X copy-pipe-no-clear "xsel -i --clipboard"
bind -T copy-mode-vi C-c send -X copy-pipe-no-clear "xsel -i --clipboard"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
I'm expecting to select something with the mouse, press y or Control-c, then go to any other app, press Control-v and have my selection pasted, but nothing happens.
i'm trying to follow a guide in which it's explained how to get copy/paste working without shift.
but with the following config :
I'm expecting to select something with the mouse, press
y
orControl-c
, then go to any other app, pressControl-v
and have my selection pasted, but nothing happens.when I list the keys I can see my bind:
and xsel works fine on its own :
What am i doing wrong?
The text was updated successfully, but these errors were encountered: