tmux: Zeilenweise Textauswahl im vi-Kopiermodus


0

Im tmuxAllgemeinen möchte ich ganze Zeilen zum Kopieren auswählen.

Wie kann ich Text zeilenweise auswählen, wie bei vi's VBefehl?

Antworten:


1

Hier ist die Lösung im Kopiermodus

1. move to the line you want to select
2. pres 0, then the cursor will move to the fist position of this line, 
same as vim
3. enter whitespace (start copy)
4. type $. Then it will highlight the whole line.

0

Der tmuxBefehl lautet select-line.

Hier ist ein netter Satz von Zuordnungen, die ich benutze (benutze, copy-modewenn ich sie nicht benutze copy-mode-vi):

# Selection / copy / paste
bind-key -T copy-mode-vi v   send -X begin-selection  # default is <space>
bind-key -T copy-mode-vi V   send -X select-line
bind-key -T copy-mode-vi C-v send -X rectangle-toggle  # default is C-v, or R in copy-mode (non-vi)
bind-key -T copy-mode-vi y   send -X copy-pipe-and-cancel 'xclip -selection clipboard -in'
bind p paste-buffer  # default ]
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.