Skip to content

Instantly share code, notes, and snippets.

@william8th
Last active April 30, 2024 17:03
Show Gist options
  • Save william8th/faf23d311fc842be698a1d80737d9631 to your computer and use it in GitHub Desktop.
Save william8th/faf23d311fc842be698a1d80737d9631 to your computer and use it in GitHub Desktop.
Tmux open new pane in same directory
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B)
set -g prefix C-space
unbind-key C-b
bind-key C-space send-prefix
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
@anggakharisma
Copy link

Amazing thank you for this 👌

@adityak714
Copy link

Thanks!!

@yoandresaav
Copy link

thanks!

@ltyiz07
Copy link

ltyiz07 commented Mar 18, 2024

Just working!

@LordMoMA
Copy link

thanks, so good!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment