Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
a91872df
Commit
a91872df
authored
Mar 26, 2013
by
Josh Matthews
Browse files
Prefixing tmux wrapper function with '_'.
parent
f0a920df
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/tmux/tmux.plugin.zsh
View file @
a91872df
...
...
@@ -49,7 +49,7 @@ if which tmux &> /dev/null
fi
# Wrapper function for tmux.
function
zsh_tmux_plugin_run
()
function
_
zsh_tmux_plugin_run
()
{
# We have other arguments, just run them
if
[[
-n
"
$@
"
]]
...
...
@@ -68,10 +68,10 @@ if which tmux &> /dev/null
}
# Use the completions for tmux for our function
compdef _tmux zsh_tmux_plugin_run
compdef _tmux
_
zsh_tmux_plugin_run
# Alias tmux to our wrapper function.
alias
tmux
=
zsh_tmux_plugin_run
alias
tmux
=
_
zsh_tmux_plugin_run
# Autostart if not already in tmux and enabled.
if
[[
!
-n
"
$TMUX
"
&&
"
$ZSH_TMUX_AUTOSTART
"
==
"true"
]]
...
...
@@ -80,7 +80,7 @@ if which tmux &> /dev/null
if
[[
"
$ZSH_TMUX_AUTOSTART_ONCE
"
==
"false"
||
"
$ZSH_TMUX_AUTOSTARTED
"
!=
"true"
]]
then
export
ZSH_TMUX_AUTOSTARTED
=
true
zsh_tmux_plugin_run
_
zsh_tmux_plugin_run
fi
fi
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment