fix(tmux-session): screen was not split in horizontal mode

This commit is contained in:
Yorick Barbanneau 2025-09-23 10:41:21 +02:00
parent 01119f632a
commit a030271f48
Signed by: ephase
GPG key ID: 4447A19BBEDB8DBA

View file

@ -162,7 +162,7 @@ tmux_vsplit() {
tmux_hsplit() {
local size="${1:-20}"
debug "execute hsplit with size '${size}'"
tmux split-window "${SESSION_NAME}" -c "$CURRENT_PATH" -h -p "$size"
tmux split-window -t "${SESSION_NAME}" -c "$CURRENT_PATH" -h -p "$size"
}
tmux_neww() {