Make "full" pane contents saving the default

pull/79/head
quentin 2015-03-18 22:38:38 +01:00
parent a1e3d37461
commit 737568922b
1 changed files with 2 additions and 2 deletions

View File

@ -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")"
}