pull/27/head
Bruno Sutic 2015-06-29 18:37:28 +02:00
parent 9a4309ed63
commit cd7faa8bba
No known key found for this signature in database
GPG Key ID: 66D96E4F2F7EF26C
3 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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)"