mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 07:20:40 +01:00
fix(tmux): use full offset parameter (#12249)
This commit is contained in:
@@ -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 \"\$@\"
|
||||||
|
|||||||
Reference in New Issue
Block a user