tmux의 창 패널 사이에 이러한 공간을 비활성화하는 방법은 무엇입니까?
~/.tmux.conf
#background color
set -g status-bg colour63
#window settings
set -g window-status-current-style fg=black,bg=colour75
set -g window-status-style bg=colour68
setw -g window-status-format ' #I [#W] '
setw -g window-status-current-format ' #I [#W] '
#status lines in panel on left and right
set -g status-right '#[bg=colour75][#S]'
set -g status-left ''
#separator lines
set-option -g pane-active-border-style "bg=default"
set-option -ag pane-active-border-style "fg=colour63"
답변1
창 상태 구분 기호를 설정하려고 합니다.
답변2
파일 ~/.tmux.conf
에는 다음이 포함되어 있습니다.
setw -g window-status-format ' #I [#W] '
setw -g window-status-current-format ' #I [#W] '
상태 표시줄에서 창에 사용되는 형식을 설명하는 줄입니다. 는 #I
인덱스 번호이고 #W
창 이름입니다.
이러한 문자열에는 시작과 끝에 추가 공백이 있어 원하지 않는 공백이 생성됩니다.
실험적으로 다음 명령을 실행하여 tmux 세션에서 이 설정을 변경할 수 있습니다.
tmux setw -g window-status-format '#I [#W]'
편집: @NicholasMarriott가 정답이 아닌 정답을 가지고 있습니다.