10 lines
122 B
Bash
10 lines
122 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
function tcd() {
|
||
|
tmux new-window -n tcd
|
||
|
|
||
|
tmux send-keys -t tcd "," C-m
|
||
|
|
||
|
tmux select-pane -t 0
|
||
|
}
|