Merge pull request #109 from plaffitt/skip-run_cmd-history

Prepend commands in run_cmd with a space to prevent them to be stored in the history
This commit is contained in:
2025-02-24 21:25:18 +00:00
committed by GitHub

View File

@@ -408,7 +408,7 @@ __go_to_window_or_session_path() {
# local window_or_session_root=${window_root-$session_root} # local window_or_session_root=${window_root-$session_root}
if [ -n "$target_path" ]; then if [ -n "$target_path" ]; then
run_cmd "cd \"$target_path\"" run_cmd " cd \"$target_path\""
run_cmd "clear" run_cmd " clear"
fi fi
} }