mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 12:09:36 +08:00
fix(tmux): use full offset parameter (#12249)
This commit is contained in:
parent
8e088ded82
commit
2c62584b83
|
@ -49,7 +49,7 @@ fi
|
|||
# ALIASES
|
||||
function _build_tmux_alias {
|
||||
eval "function $1 {
|
||||
if [[ -z \$1 ]] || [[ \${1::1} == '-' ]]; then
|
||||
if [[ -z \$1 ]] || [[ \${1:0:1} == '-' ]]; then
|
||||
tmux $2 \"\$@\"
|
||||
else
|
||||
tmux $2 $3 \"\$@\"
|
||||
|
|
Loading…
Reference in New Issue
Block a user