fix #95 restore name of first window

This commit is contained in:
Kevin Tindall 2017-12-03 22:11:51 -06:00
parent 7c77c70483
commit 8f3f8d7cb9
No known key found for this signature in database
GPG Key ID: 311063395E17044C
1 changed files with 2 additions and 0 deletions

View File

@ -170,6 +170,7 @@ restore_pane() {
window_name="$(remove_first_char "$window_name")"
pane_full_command="$(remove_first_char "$pane_full_command")"
if pane_exists "$session_name" "$window_number" "$pane_index"; then
tmux rename-window -t "$window_number" "$window_name"
if is_restoring_from_scratch; then
# overwrite the pane
# happens only for the first pane if it's the only registered pane for the whole tmux server
@ -182,6 +183,7 @@ restore_pane() {
register_existing_pane "$session_name" "$window_number" "$pane_index"
fi
elif window_exists "$session_name" "$window_number"; then
tmux rename-window -t "$window_number" "$window_name"
new_pane "$session_name" "$window_number" "$window_name" "$dir" "$pane_index"
elif session_exists "$session_name"; then
new_window "$session_name" "$window_number" "$window_name" "$dir" "$pane_index"