diff --git a/scripts/save.sh b/scripts/save.sh index fef80cf..5ca7e60 100755 --- a/scripts/save.sh +++ b/scripts/save.sh @@ -111,8 +111,8 @@ pane_full_command() { capture_pane_contents() { local pane_id="$1" - local start_line="0" - [[ "$(get_tmux_option "$pane_contents_area_option" "visible")" == "full" ]] && start_line="-$2" + local start_line="-$2" + [[ "$(get_tmux_option "$pane_contents_area_option" "full")" == "visible" ]] && start_line="0" tmux capture-pane -epJ -S "$start_line" -t "$pane_id" > "$(resurrect_pane_file "$pane_id")" }