tmux splitting panes

https://youtu.be/kzgyiHap1nQ

Copy this post

https://youtu.be/kzgyiHap1nQ

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

πŸ—’οΈ 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.

How I navigate tmux in 2021

for more information on how I navigate tmux, check out this full post