mirror of
https://github.com/tmux-plugins/tmux-resurrect.git
synced 2024-11-22 04:18:48 +00:00
Merge pull request #56 from cunha/master
allow relative paths in @resurrect-dir
This commit is contained in:
commit
e8401ba305
@ -131,10 +131,10 @@ dump_bash_history() {
|
|||||||
save_all() {
|
save_all() {
|
||||||
local resurrect_file_path="$(resurrect_file_path)"
|
local resurrect_file_path="$(resurrect_file_path)"
|
||||||
mkdir -p "$(resurrect_dir)"
|
mkdir -p "$(resurrect_dir)"
|
||||||
dump_panes > $resurrect_file_path
|
dump_panes > "$resurrect_file_path"
|
||||||
dump_windows >> $resurrect_file_path
|
dump_windows >> "$resurrect_file_path"
|
||||||
dump_state >> $resurrect_file_path
|
dump_state >> "$resurrect_file_path"
|
||||||
ln -fs "$resurrect_file_path" "$(last_resurrect_file)"
|
ln -fs "$(basename "$resurrect_file_path")" "$(last_resurrect_file)"
|
||||||
if save_bash_history_option_on; then
|
if save_bash_history_option_on; then
|
||||||
dump_bash_history
|
dump_bash_history
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user