mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2024-11-22 03:08:48 +00:00
Merge pull request #58 from diegoximenes/fix/automatic_restore
Fix automatic restore.
This commit is contained in:
commit
10c6d73791
@ -44,7 +44,9 @@ add_resurrect_save_interpolation() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
just_started_tmux_server() {
|
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() {
|
start_auto_restore_in_background() {
|
||||||
|
Loading…
Reference in New Issue
Block a user