tmux가 천천히 스크롤하고 스크롤 속도-스크롤당 라인 수가 작동하지 않는 것 같습니다.

tmux가 천천히 스크롤하고 스크롤 속도-스크롤당 라인 수가 작동하지 않는 것 같습니다.

tmux를 iTerm2만큼 빠르게 스크롤하려고 합니다.

%> tmux -V
tmux 2.3
%> cat ~/.tmux.conf
set-option -g mouse on
set -g @scroll-speed-num-lines-per-scroll 5

하지만 내 구성이 작동하지 않는 것 같습니다. 줄 번호가 천천히 변경되는 것을 볼 수 있으므로 확실히 작동하지 않습니다.

여기에 이미지 설명을 입력하세요.

어떤 아이디어가 있나요?

답변1

tmux 플러그인을 사용하여 작업을 수행할 수 있었습니다.

먼저 제가 설치한완전한 생산 관리:

git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

그런 다음 구성 @scroll-speed-num-lines-per-scroll하고 추가했습니다.tmux-better-mouse-mode그리고 내 TPM ~/.tmux.conf:

set -g @scroll-speed-num-lines-per-scroll 1  # change to the speed you'd like

set -g @plugin 'nhdaly/tmux-better-mouse-mode'

run -b '~/.tmux/plugins/tpm/tpm'

tmux conf를 다시 로드한 후 실행하여 prefix+I플러그인을 설치했는데 스크롤 속도가 @scroll-speed-num-lines-per-scroll설정에 따라 응답했습니다.

관련 정보