mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2024-11-14 06:08:47 +00:00
Fix automatic restore.
This commit is contained in:
parent
4e2279688d
commit
509e898da6
@ -44,7 +44,9 @@ add_resurrect_save_interpolation() {
|
||||
}
|
||||
|
||||
just_started_tmux_server() {
|
||||
[ "$(tmux display-message -p -F '#{start_time}')" -gt "$(($(date +%s)-10))" ]
|
||||
local tmux_start_time
|
||||
tmux_start_time="$(tmux display-message -p -F '#{start_time}')"
|
||||
[ "$tmux_start_time" == "" ] || [ "$tmux_start_time" -gt "$(($(date +%s)-10))" ]
|
||||
}
|
||||
|
||||
start_auto_restore_in_background() {
|
||||
|
Loading…
Reference in New Issue
Block a user