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.conf
Enter
(참고: 이 솔루션은 tmux 접두사 및 tmux 에 대한 기본 키 바인딩을 가정합니다 command-prompt
. tmux의 관련 바인딩이 다른 경우 이에 따라 솔루션을 조정해야 합니다.)
답변2
tmux.conf
tmux
에 의해 생성된 구성 파일 입니다 . 스크립트나 조각이 tmux
아닙니다 . ing은 지시문을 이해하지 못하는 current를 통해 이를 제공합니다 . 읽고 , 보고bash
source
tmux.conf
bash
tmux
man tmux
마우스 없이 tmux 구성.