Skip to content

Commit

Permalink
fix(tmux): cannot open a path including whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Aug 5, 2024
1 parent f4368e6 commit 2df4c5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .config/tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set-window-option -g mode-keys vi
# Reload settings
bind r source-file ~/.config/tmux/tmux.conf \; display "Reloaded!"
# Open current directory
bind o run-shell "open #{pane_current_path}"
bind o run-shell "open '#{pane_current_path}'"
bind -r e kill-pane -a

# vim-like pane switching
Expand Down Expand Up @@ -85,4 +85,4 @@ set -g set-titles-string "#T"
if-shell "uname -s | grep -q Darwin" "source ~/.config/tmux/macos.conf"

source ~/.config/tmux/statusline.conf
source ~/.config/tmux/utility.conf
source ~/.config/tmux/utility.conf

0 comments on commit 2df4c5b

Please sign in to comment.