@[email protected] to [email protected]English • 1 year agoWhat is your favorite terminal emulator.message-square115fedilinkarrow-up1126arrow-down12file-text
arrow-up1124arrow-down1message-squareWhat is your favorite terminal emulator.@[email protected] to [email protected]English • 1 year agomessage-square115fedilinkfile-text
minus-square@[email protected]linkfedilink2•1 year agoah yes sorry i meant copy to system clipboard. i succeed in configuring vim so it uses the system clipboard on both local and remote sessions. i would like to do the same with tmux, but as you said too, it does not seem to be a way.
minus-square𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍linkfedilink4•1 year agoYou absolutely can. You just have to use a clipboard command as the copy/paste. Add this to your ~/.tmux.conf bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i -b" bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xsel -i -b" or use your favorite cli clipboard command. Note that those are using the vi bindings; you might have to adapt the config.
ah yes sorry i meant copy to system clipboard.
i succeed in configuring vim so it uses the system clipboard on both local and remote sessions.
i would like to do the same with tmux, but as you said too, it does not seem to be a way.
You absolutely can. You just have to use a clipboard command as the copy/paste. Add this to your
~/.tmux.conf
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i -b" bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xsel -i -b"
or use your favorite cli clipboard command. Note that those are using the vi bindings; you might have to adapt the config.