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
8e368c12
Commit
8e368c12
authored
Apr 03, 2013
by
Tima Maslyuchenko
Browse files
added hub autocomplete instructions
parent
b8b241f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/github/github.plugin.zsh
View file @
8e368c12
# Setup hub function for git, if it is available; http://github.com/defunkt/hub
if
[
"
$commands
[(I)hub]"
]
&&
[
"
$commands
[(I)ruby]"
]
;
then
# Autoload _git completion functions
if
declare
-f
_git
>
/dev/null
;
then
_git
fi
if
declare
-f
_git_commands
>
/dev/null
;
then
_hub_commands
=(
'alias:show shell instructions for wrapping git'
'pull-request:open a pull request on GitHub'
'fork:fork origin repo on GitHub'
'create:create new repo on GitHub for the current project'
'browse:browse the project on GitHub'
'compare:open GitHub compare view'
)
# Extend the '_git_commands' function with hub commands
eval
"
$(
declare
-f
_git_commands |
sed
-e
's/base_commands=(/base_commands=(${_hub_commands} /'
)
"
fi
# eval `hub alias -s zsh`
function
git
(){
if
!
((
$+
_has_working_hub
))
;
then
...
...
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