Change 'save pane contents' directory

This commit is contained in:
Bruno Sutic
2015-07-08 00:14:40 +02:00
parent 74773bed62
commit a750628a44
3 changed files with 7 additions and 1 deletions

View File

@ -87,9 +87,13 @@ last_resurrect_file() {
echo "$(resurrect_dir)/last"
}
pane_contents_dir() {
echo "$(resurrect_dir)/pane_contents/"
}
pane_contents_file() {
local pane_id="$1"
echo "$(resurrect_dir)/pane_contents-${pane_id}"
echo "$(pane_contents_dir)/pane-${pane_id}"
}
pane_contents_file_exists() {

View File

@ -259,6 +259,7 @@ save_all() {
dump_state >> "$resurrect_file_path"
ln -fs "$(basename "$resurrect_file_path")" "$(last_resurrect_file)"
if capture_pane_contents_option_on; then
mkdir -p "$(pane_contents_dir)"
dump_pane_contents
fi
if save_bash_history_option_on; then