134
submitted 11 months ago by kevincox@lemmy.ml to c/linux@lemmy.ml

I'm reconsidering my terminal emulator and was curious what everyone was using.

you are viewing a single comment's thread
view the rest of the comments
[-] hackris@lemmy.ml 14 points 11 months ago

Anything, but with tmux running inside. You can copy text even in a tty, split the terminal window, detach from and attach to tmux sessions, etc. I will never use a terminal for any moderately complex task without tmux again :)

[-] Rescuer6394@feddit.nl 3 points 11 months ago

i never got the copy part right, what configs are you using?

also, can you copy from a remote (ssh) tmux?

[-] hackris@lemmy.ml 2 points 11 months ago

Copying in tmux (assuming default keybindings):

  1. Enter copy mode with Ctrl+b, [
  2. Position the cursor at the start of the text to be copied, press Ctrl+SPACE to start copying
  3. Position the cursor at the end of the text, press Alt+w or Ctrl+w to copy into the tmux buffer
  4. Press Ctrl+b, ] to paste, possibly into different pane :)

By 'copy', I meant between different tmux panes/windows.

If you open tmux on your host, split it into two panes and SSH into the server in one of them, then you can use this copy functionality. I'm personally not aware of a way to copy between a remote and local tmux session.

[-] Rescuer6394@feddit.nl 2 points 11 months ago

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.

[-] sxan@midwest.social 4 points 11 months ago

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.

this post was submitted on 08 Sep 2023
134 points (98.6% liked)

Linux

46738 readers
1629 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS