mirror of
https://github.com/tmux-plugins/tmux-resurrect.git
synced 2024-11-21 20:08:48 +00:00
enable tilde expansion ( aka ~ ) into /home/ubuntu in saved session files's paths
This commit is contained in:
parent
abbc4fbfc4
commit
716b958145
@ -130,6 +130,7 @@ new_window() {
|
|||||||
local dir="$4"
|
local dir="$4"
|
||||||
local pane_index="$5"
|
local pane_index="$5"
|
||||||
local pane_id="${session_name}:${window_number}.${pane_index}"
|
local pane_id="${session_name}:${window_number}.${pane_index}"
|
||||||
|
dir="${dir/#\~/$HOME}"
|
||||||
if is_restoring_pane_contents && pane_contents_file_exists "$pane_id"; then
|
if is_restoring_pane_contents && pane_contents_file_exists "$pane_id"; then
|
||||||
local pane_creation_command="$(pane_creation_command "$session_name" "$window_number" "$pane_index")"
|
local pane_creation_command="$(pane_creation_command "$session_name" "$window_number" "$pane_index")"
|
||||||
tmux new-window -d -t "${session_name}:${window_number}" -n "$window_name" -c "$dir" "$pane_creation_command"
|
tmux new-window -d -t "${session_name}:${window_number}" -n "$window_name" -c "$dir" "$pane_creation_command"
|
||||||
|
Loading…
Reference in New Issue
Block a user