problemas de tmux, urxvt e copiar e colar…

0

Estou executando o tmux dentro do urxvt. Eu gostaria de selecionar e copiar texto usando o botão esquerdo do mouse e colá-lo usando o botão do meio do mouse - eu sou muito velha escola.

Eu consegui tmux-yank quase funcionando, mas preciso apertar SHIFT + Mouse 1 Selecione fazendo a seleção, então aperte y ... Isso é um monte de pressionamentos de teclas.

Alguém sabe como posso melhorar esse comportamento simples?

Aqui estão algumas versões:

; tmux -V       
tmux 2.2
; urxvt256c-ml --version 
urxvt: "version": unknown or malformed option.
rxvt-unicode (urxvt256c-ml) v9.21 - released: 2014-12-31
options: perl,xft,styles,combining,blink,iso14755,unicode3,encodings=eu+vn+jp+jp-ext+kr+zh+zh-ext,fade,transparent,tint,pixbuf,XIM,frills,selectionscrolling,wheel,slipwheel,smart-resize,cursorBlink,pointerBlank,scrollbars=plain+rxvt+NeXT+xterm
[…]
; awesome --version
awesome v3.5.9 (Mighty Ravendark)
 • Build: Mar  7 2016 18:43:56 for x86_64 by gcc version 6.0.0 (mockbuild@)
 • Compiled against Lua 5.3.2 (running with Lua 5.3)
 • D-Bus support: ✔
    
por Sardathrion 23.09.2016 / 09:51

1 resposta

0

No caso de alguma outra pobre alma lutar com isso, aqui está o meu arquivo ~/.tmux.conf . Eu uso o gerenciador de plug-ins do tmux então instale isso primeiro.

# ./tmux.conf

# Powerline…
run-shell "powerline-daemon -q"
source '~/.local/lib/python2.7/site-packages/powerline/bindings/tmux/powerline.conf'

# VI-mode…
setw -g mode-keys vi

# C-b is not acceptable -- Vim uses it
set-option -g prefix C-a
bind-key C-a last-window

# Set windows modes styles
set -g mode-style "fg=black,bg=colour69"

# Renumber windows
set -g renumber-windows on

# Automaitcally rename.
setw -g automatic-rename

# Allows for faster key repetition
set -s escape-time 0

# Scroll History
set -g history-limit 30000

# Mouse
set -g mouse on # ← This stops the default correct behaviour…

# List of plugins
set -g @plugin 'tmux-plugins/tpm' # ← The tmux plugin manager.
set -g @plugin 'nhdaly/tmux-scroll-copy-mode' # ← sane scrolling.
set -g @plugin 'tmux-plugins/tmux-yank' # ← Yanking.
set -g @shell_mode 'vi'  # tmux-yank option.
set -g @yank_selection 'primary'  # tmux-yank option.

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
# EOF

Então, você pode usar o mouse para selecionar qualquer texto que desejar. Se você pressionar y antes de liberar o botão esquerdo do mouse, a seleção será copiada para o buffer principal, que você pode colar através do clique do meio do mouse.

    
por 23.09.2016 / 14:43

Tags