Browse Source

tmux: `set status-utf8` not accepted since 2.2

Signed-off-by: Alejandro Mery <amery@geeks.cl>
master
Alejandro Mery 4 years ago
parent
commit
c58ad26c3a
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      files/.tmux.conf

+ 7
- 1
files/.tmux.conf

@ -5,6 +5,12 @@ run-shell "\
tmux set-environment -g TMUX_VERSION \$((x * 100 + y));\ tmux set-environment -g TMUX_VERSION \$((x * 100 + y));\
done" done"
# https://github.com/tmux/tmux/blob/master/CHANGES
#
# 2.2
# * UTF8 autodetected, `set status-utf8` not accepted.
#
# same prefix as `screen` # same prefix as `screen`
set -g prefix C-a set -g prefix C-a
unbind C-b unbind C-b
@ -24,7 +30,7 @@ bind C-a send-prefix
# status bar # status bar
# #
set -g status-utf8 on
if-shell -b 'test $TMUX_VERSION -lt 202' 'set -g status-utf8 on'
set -g monitor-activity on set -g monitor-activity on
set -g visual-activity on set -g visual-activity on

Loading…
Cancel
Save