0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

fix(tmux): use full offset parameter (#12249)

This commit is contained in:
张天泽 2024-03-02 16:12:34 +08:00 committed by GitHub
parent 8e088ded82
commit 2c62584b83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ fi
# ALIASES # ALIASES
function _build_tmux_alias { function _build_tmux_alias {
eval "function $1 { eval "function $1 {
if [[ -z \$1 ]] || [[ \${1::1} == '-' ]]; then if [[ -z \$1 ]] || [[ \${1:0:1} == '-' ]]; then
tmux $2 \"\$@\" tmux $2 \"\$@\"
else else
tmux $2 $3 \"\$@\" tmux $2 $3 \"\$@\"