Minor changes to tmux key bindings and names; minor clean-up

This commit is contained in:
2025-08-28 21:38:15 -05:00
parent 624a06cc36
commit d4f05595d2
4 changed files with 19 additions and 36 deletions

View File

@@ -23,7 +23,7 @@ local target_path=''
[[ $# -eq 1 ]] && target_path=$1 ||
target_path=$(find $search_dirs -mindepth 1 -maxdepth 1 -type d | fzf)
if [[ $target_path = "existing" ]]; then target_name=$(echo $existing_sessions | fzf);
if [[ $target_path = "find-existing" ]]; then target_name=$(echo $existing_sessions | fzf);
elif [[ $target_path = "hub" ]]; then target_name="hub" && target_path="$HOME";
elif [[ -n $target_path ]]; then target_name=$(basename "$target_path" | tr . _);
fi