mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
fix(fish): quoted problematic strings
This commit is contained in:
parent
e729b21a2f
commit
312789f0e0
2 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ function tmux_sessionizer --description "create tmux sessions"
|
|||
set selected_name (echo $selected | tr . _)
|
||||
set tmux_running (pgrep tmux)
|
||||
|
||||
if [ -z $TMUX ] && [ -z $tmux_running ]
|
||||
if [ -z "$TMUX" ] && [ -z "$tmux_running" ]
|
||||
tmux \
|
||||
new-session -s $selected_name -c $selected \; \
|
||||
send-keys -t $selected_name nvim ENTER \; \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue