Remove option checking

pull/47/head
Dario Romagnoli 2019-01-30 16:32:12 +01:00 committed by GitHub
parent 886b202f97
commit 2e6398b747
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 5 deletions

View File

@ -67,6 +67,9 @@ key_binding_not_changed() {
main() {
# OPTIONS
# enable renumbering of windows
tmux set-option -g renumber-windows on
# enable utf8 (option removed in tmux 2.2)
tmux set-option -g utf8 on 2>/dev/null
@ -78,11 +81,6 @@ main() {
tmux set-option -s escape-time 0
fi
# enable renumbering of windows
if option_value_not_changed "renumber-windows" "off"; then
tmux set-option -g renumber-windows on
fi
# increase scrollback buffer size
if option_value_not_changed "history-limit" "2000"; then
tmux set-option -g history-limit 50000