mirror of
				https://github.com/tmux-plugins/tmux-resurrect.git
				synced 2025-11-04 08:56:03 +00:00 
			
		
		
		
	Refactor checking if tmux session file exists
This commit is contained in:
		@@ -1,6 +1,7 @@
 | 
			
		||||
# Changelog
 | 
			
		||||
 | 
			
		||||
### master
 | 
			
		||||
- refactor checking if saved tmux session exists
 | 
			
		||||
 | 
			
		||||
### v0.0.5, 2014-08-28
 | 
			
		||||
- restore pane processes
 | 
			
		||||
 
 | 
			
		||||
@@ -15,8 +15,8 @@ is_line_type() {
 | 
			
		||||
check_saved_session_exists() {
 | 
			
		||||
	local saved_session="$(last_session_path)"
 | 
			
		||||
	if [ ! -f $saved_session ]; then
 | 
			
		||||
		display_message "Saved session not found!"
 | 
			
		||||
		exit
 | 
			
		||||
		display_message "Saved tmux session not found!"
 | 
			
		||||
		return 1
 | 
			
		||||
	fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -149,8 +149,7 @@ restore_active_and_alternate_sessions() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
main() {
 | 
			
		||||
	if supported_tmux_version_ok; then
 | 
			
		||||
		check_saved_session_exists
 | 
			
		||||
	if supported_tmux_version_ok && check_saved_session_exists; then
 | 
			
		||||
		restore_all_sessions
 | 
			
		||||
		restore_all_pane_processes
 | 
			
		||||
		restore_pane_layout_for_each_window >/dev/null 2>&1
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user