mirror of
https://github.com/tmux-plugins/tmux-sensible.git
synced 2024-11-24 00:48:46 +00:00
Fix option for tmux 2.0+
This commit is contained in:
parent
3ea5b9f6b9
commit
2476f3fb23
@ -3,6 +3,7 @@
|
|||||||
### master
|
### master
|
||||||
- update to support \*THE\* latest tmux version
|
- update to support \*THE\* latest tmux version
|
||||||
- bugfix for `prefix + R` key binding
|
- bugfix for `prefix + R` key binding
|
||||||
|
- fix for tmux 2.0 `default-terminal` option (thanks @kwbr)
|
||||||
|
|
||||||
### v2.2.0, 2015-02-10
|
### v2.2.0, 2015-02-10
|
||||||
- bugfix in `key_binding_not_set`: the regex is now properly detecting key
|
- bugfix in `key_binding_not_set`: the regex is now properly detecting key
|
||||||
|
@ -101,10 +101,14 @@ main() {
|
|||||||
tmux set-option -g default-command "reattach-to-user-namespace -l $SHELL"
|
tmux set-option -g default-command "reattach-to-user-namespace -l $SHELL"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# upgrade $TERM
|
# upgrade $TERM, tmux 1.9
|
||||||
if option_value_not_changed "default-terminal" "screen"; then
|
if option_value_not_changed "default-terminal" "screen"; then
|
||||||
tmux set-option -g default-terminal "screen-256color"
|
tmux set-option -g default-terminal "screen-256color"
|
||||||
fi
|
fi
|
||||||
|
# upgrade $TERM, tmux 2.0+
|
||||||
|
if server_option_value_not_changed "default-terminal" "screen"; then
|
||||||
|
tmux set-option -s default-terminal "screen-256color"
|
||||||
|
fi
|
||||||
|
|
||||||
# emacs key bindings in tmux command prompt (prefix + :) are better than
|
# emacs key bindings in tmux command prompt (prefix + :) are better than
|
||||||
# vi keys, even for vim users
|
# vi keys, even for vim users
|
||||||
|
Loading…
Reference in New Issue
Block a user