This content originally appeared on DEV Community and was authored by Waylon Walker
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.
This content originally appeared on DEV Community and was authored by Waylon Walker
Waylon Walker | Sciencx (2021-07-17T14:20:30+00:00) tmux splitting panes. Retrieved from https://www.scien.cx/2021/07/17/tmux-splitting-panes/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.