Fix restoring active/alternate windows

This commit is contained in:
Bruno Sutic 2022-05-01 17:17:50 +02:00
parent 6050d2d8d8
commit ca6468e2de
No known key found for this signature in database
GPG Key ID: CAFA7B1B2914ED81
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ restore_grouped_sessions() {
}
restore_active_and_alternate_windows() {
awk 'BEGIN { FS="\t"; OFS="\t" } /^window/ && $6 ~ /[*-]/ { print $2, $4, $3; }' $(last_resurrect_file) |
awk 'BEGIN { FS="\t"; OFS="\t" } /^window/ && $6 ~ /[*-]/ { print $2, $5, $3; }' $(last_resurrect_file) |
sort -u |
while IFS=$d read session_name active_window window_number; do
tmux switch-client -t "${session_name}:${window_number}"