알 수없는 옵션 : iterm을 사용한 mode-mouse, tmux


30

컴퓨터를 재설정했는데 이제 tmux가 .tmux.conf다음 지시문 에 대해 불평하고 있습니다 .

setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window off
set -g default-terminal "screen-256color"

이 오류와 함께 :

/Users/mdurrant/.tmux.conf:24: unknown option: mode-mouse                  [0/0]
/Users/mdurrant/.tmux.conf:25: unknown option: mouse-select-pane
/Users/mdurrant/.tmux.conf:26: unknown option: mouse-resize-pane
/Users/mdurrant/.tmux.conf:27: unknown option: mouse-select-window

따라서 주석을 달아야하지만 내 마우스가 tmux에서 작동하지 않으므로 고통입니다.

tmux를 사용하여 iTerm2에서 마우스를 활성화하려면 어떻게해야합니까?

이것은 다른 Mac에서도 작동합니다.

tmux 버전 2.1을 사용합니다.

답변:


57

이것은 2.0-> 2.1에서 tmux의 변화처럼 보입니다.

나는 교체했다

setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window off

그냥

set-option -g mouse on

그리고 다 괜찮아 보인다


4
mouse on를 구성하고는 다음 The default key bindings allow the mouse to be used to select and resize panes, to copy text and to change window using the status line.,이 설정에 해당 그래서 mouse-select-pane, mouse-resize-panemouse-select-windowon. 아마도 원래 구성에 충분히 가까울 것입니다. 정확히 동일하지는 않습니다.
davidjb

이 모든 세월 동안 나는 핸드 브레이크로 운전하고있었습니다.
PnotNP

0

tmux에서는 mode-mouse가 지원되지 않습니다. ~ / .tmux.conf에서 사용해보십시오

set -g mouse on

터미널에서 실행

tmux source-file ~/.tmux.conf

내 컴퓨터에서 잘 작동하면 스크롤하고 창을 변경할 수 있습니다 ...

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.