mirror of
https://github.com/tmux-plugins/tmux-sensible.git
synced 2025-01-05 06:58:49 +00:00
Enable
This commit is contained in:
parent
b5a1c2ade5
commit
ba0b52d999
@ -3,6 +3,7 @@
|
||||
### master
|
||||
- bugfix in `key_binding_not_set`: the regex is now properly detecting key
|
||||
bindings with `-r` flag.
|
||||
- enable `aggressive-resize`
|
||||
|
||||
### v2.1.0, 2014-12-12
|
||||
- check before binding `prefix + prefix` (@m1foley)
|
||||
|
@ -51,6 +51,9 @@ Inspired by [vim-sensible](https://github.com/tpope/vim-sensible).
|
||||
# focus events enabled for terminals that support them
|
||||
set -g focus-events on
|
||||
|
||||
# super useful when using "grouped sessions" and multi-monitor setup
|
||||
setw -g aggressive-resize on
|
||||
|
||||
### Key bindings
|
||||
|
||||
# easier and faster switching between next/prev window
|
||||
|
@ -110,6 +110,9 @@ main() {
|
||||
# focus events enabled for terminals that support them
|
||||
tmux set-option -g focus-events on
|
||||
|
||||
# super useful when using "grouped sessions" and multi-monitor setup
|
||||
tmux set-window-option -g aggressive-resize on
|
||||
|
||||
# ALMOST SENSIBLE OPTIONS - DEPRECATED
|
||||
|
||||
if almost_sensible_on; then
|
||||
|
Loading…
Reference in New Issue
Block a user