Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Christian Salzmann-Jaeckel
tmux-resurrect
Commits
e4825055
Unverified
Commit
e4825055
authored
Sep 18, 2020
by
Bruno Sutic
Committed by
GitHub
Sep 18, 2020
Browse files
Merge pull request #361 from diegoximenes/fix/restore_window_renaming
Fix rename-window's target-window during restore
parents
123d83c6
b6cbf652
Changes
1
Show whitespace changes
Inline
Side-by-side
scripts/restore.sh
View file @
e4825055
...
...
@@ -186,7 +186,7 @@ restore_pane() {
restored_session_0_true
fi
if
pane_exists
"
$session_name
"
"
$window_number
"
"
$pane_index
"
;
then
tmux rename-window
-t
"
$window_number
"
"
$window_name
"
tmux rename-window
-t
"
$
{
session_name
}
:
${
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
...
...
@@ -199,7 +199,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
"
tmux rename-window
-t
"
$
{
session_name
}
:
${
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
"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment