mirror of
https://github.com/tmux-plugins/tmux-resurrect.git
synced 2024-11-22 12:38:47 +00:00
Bugfix: correct pane ordering in window
This commit is contained in:
parent
4d5c0a2a0d
commit
bcad7cd1ea
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
### master
|
### master
|
||||||
- restore pane layout for each window
|
- restore pane layout for each window
|
||||||
|
- bugfix: correct pane ordering in a window
|
||||||
|
|
||||||
### v0.0.3, 2014-08-26
|
### v0.0.3, 2014-08-26
|
||||||
- save and restore current and alternate session
|
- save and restore current and alternate session
|
||||||
|
@ -69,7 +69,7 @@ new_pane() {
|
|||||||
local window_number="$2"
|
local window_number="$2"
|
||||||
local window_name="$3"
|
local window_name="$3"
|
||||||
local dir="$4"
|
local dir="$4"
|
||||||
tmux split-window -d -t "${session_name}:${window_number}" -c "$dir"
|
tmux split-window -t "${session_name}:${window_number}" -c "$dir"
|
||||||
}
|
}
|
||||||
|
|
||||||
restore_pane() {
|
restore_pane() {
|
||||||
|
Loading…
Reference in New Issue
Block a user