tmux: texto de linha selction no modo de cópia vi

0

Em tmux , geralmente desejo selecionar linhas inteiras para copiar.

Como posso selecionar a linha de texto, como vi ' V command?

    
por Tom Hale 11.08.2017 / 09:46

2 respostas

0

O comando tmux é select-line .

Aqui está um bom conjunto de mapeamentos que uso (use copy-mode se não estiver usando 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 ]
    
por 04.08.2018 / 05:54
1

Aqui está a solução, no modo de cópia

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.
    
por 03.08.2018 / 18:05

Tags