tmux, urxvt 및 복사-붙여넣기 문제…

tmux, urxvt 및 복사-붙여넣기 문제…

urxvt에서 tmux를 실행 중입니다. 마우스 왼쪽 버튼을 사용하여 텍스트를 선택하고 복사한 다음 마우스 가운데 버튼을 사용하여 붙여넣고 싶습니다. 저는 구식입니다.

나는 얻었다tmux 복사거의 작동하지만 Shift+마우스 1을 눌러 선택해야 합니다. 그런 다음 y키를 많이 눌러야 합니다.

이 간단한 동작을 더 효과적으로 수행할 수 있는 방법을 아는 사람이 있습니까?

다음은 일부 버전입니다:

; 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: ✔

답변1

다른 불쌍한 영혼이 이것으로 어려움을 겪는 경우를 대비해 여기에 내 ~/.tmux.conf문서가 있습니다. 나는 사용한다tmux 플러그인 관리자그러니 먼저 설치해 보세요.

# ./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

따라서 마우스를 사용하여 원하는 텍스트를 선택할 수 있습니다. 당신이 쳤다면y 앞으로마우스 왼쪽 버튼을 놓으면 선택 항목이 메인 버퍼에 복사되며, 여기서 마우스 가운데 버튼을 클릭하여 붙여넣을 수 있습니다.

관련 정보