mirror of
https://github.com/tmux-plugins/tmux-sensible.git
synced 2024-11-21 15:18:48 +00:00
Disable
This commit is contained in:
parent
9a4309ed63
commit
cd7faa8bba
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
### master
|
### master
|
||||||
- do not set `aggressive-resize` on iTerm terminal
|
- do not set `aggressive-resize` on iTerm terminal
|
||||||
|
- disable `detach-on-destroy`
|
||||||
|
|
||||||
### v3.0.0, 2015-06-24
|
### v3.0.0, 2015-06-24
|
||||||
- remove 'almost sensible' feature
|
- remove 'almost sensible' feature
|
||||||
|
@ -54,6 +54,9 @@ Inspired by [vim-sensible](https://github.com/tpope/vim-sensible).
|
|||||||
# super useful when using "grouped sessions" and multi-monitor setup
|
# super useful when using "grouped sessions" and multi-monitor setup
|
||||||
setw -g aggressive-resize on
|
setw -g aggressive-resize on
|
||||||
|
|
||||||
|
# don't detach tmux when killing a session
|
||||||
|
set -g detach-on-destroy off
|
||||||
|
|
||||||
### Key bindings
|
### Key bindings
|
||||||
|
|
||||||
# easier and faster switching between next/prev window
|
# easier and faster switching between next/prev window
|
||||||
|
@ -119,6 +119,9 @@ main() {
|
|||||||
tmux set-window-option -g aggressive-resize on
|
tmux set-window-option -g aggressive-resize on
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# why detach when killing a session?
|
||||||
|
tmux set-option -g detach-on-destroy 'off'
|
||||||
|
|
||||||
# DEFAULT KEY BINDINGS
|
# DEFAULT KEY BINDINGS
|
||||||
|
|
||||||
local prefix="$(prefix)"
|
local prefix="$(prefix)"
|
||||||
|
Loading…
Reference in New Issue
Block a user