도움말 - /etc "source tmux.conf"에서 오류가 발생하는 경우. 이러한 오류를 어떻게 수정할 수 있나요? 올바른 모드는 무엇입니까 - 마우스/마우스 모드

도움말 - /etc "source tmux.conf"에서 오류가 발생하는 경우. 이러한 오류를 어떻게 수정할 수 있나요? 올바른 모드는 무엇입니까 - 마우스/마우스 모드
root@abyss/home # source tmux.conf
 set-window-option: command not found
tmux.conf (line 2):
set-window-option -g automatic-rename on
^
from sourcing file tmux.conf
 set-option: command not found
tmux.conf (line 3):
set-option -g set-titles on
^
from sourcing file tmux.conf
 unbind: command not found
tmux.conf (line 6):
unbind C-b
^

답변1

source tmux.conf이를 이해하는 쉘 source(예: Bash)에서 호출하면 쉘이 를 해석하게 됩니다 tmux.conf. 파일에는 쉘이 아닌 tmux에 대한 명령이 포함되어 있습니다.

tmux가 파일을 해석하기를 원합니다. 옮기다:

tmux source tmux.conf

위 코드는 tmux 내부 또는 외부에서 실행될 수 있습니다(tmux 서버가 실행 중이라고 가정). 또는 대화형으로 수행하되 tmux 내에서만 수행합니다.

Ctrl+b:source tmux.confEnter

(참고: 이 솔루션은 tmux 접두사 및 tmux 에 대한 기본 키 바인딩을 가정합니다 command-prompt. tmux의 관련 바인딩이 다른 경우 이에 따라 솔루션을 조정해야 합니다.)

답변2

tmux.conftmux에 의해 생성된 구성 파일 입니다 . 스크립트나 조각이 tmux아닙니다 . ing은 지시문을 이해하지 못하는 current를 통해 이를 제공합니다 . 읽고 , 보고bashsourcetmux.confbashtmuxman tmux마우스 없이 tmux 구성.

관련 정보