DEV Community

0 seconds of 59 secondsVolume 90%
Press shift question mark to access a list of keyboard shortcuts
00:00
00:00
00:59
 
Waylon Walker
Waylon Walker

Posted on β€’ Edited on β€’ Originally published at waylonwalker.com

3 1

tmux splitting panes

splitting panes is a core feature of tmux. It allows us to split the terminal
vertically or horizontally into new panes.

bind -n M-s split-window -c '#{pane_current_path}'
bind -n M-v split-window -h -c '#{pane_current_path}'
bind -n M-X kill-pane
Enter fullscreen mode Exit fullscreen mode

πŸ—’οΈ note that '#{pane_current_path}'will keep the split in the same directory
as it's parent, without this it will default to your home directory.


Be sure to check out the full youtube playlist and subscribe if you like it.

https://www.youtube.com/playlist?list=PLTRNG6WIHETB4reAxbWza3CZeP9KL6Bkr

Also check out this long form post for more about how I use tmux.

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay