Adds a fix for directory paths with spaces that aren't escaped.

This commit is contained in:
Graham Patterson 2019-03-01 10:37:01 -05:00
parent c3ffe89e52
commit a876ad6648
1 changed files with 1 additions and 0 deletions

View File

@ -233,6 +233,7 @@ dump_panes() {
continue
fi
full_command="$(pane_full_command $pane_pid)"
dir=$(echo $dir | sed 's/ /\\ /') # escape all spaces in directory path
echo "${line_type}${d}${session_name}${d}${window_number}${d}${window_name}${d}${window_active}${d}${window_flags}${d}${pane_index}${d}${dir}${d}${pane_active}${d}${pane_command}${d}:${full_command}"
done
}