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
178bce28
Commit
178bce28
authored
Dec 04, 2012
by
Robby Russell
Browse files
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
parents
63deae38
0118b5b7
Changes
9
Show whitespace changes
Inline
Side-by-side
lib/directories.zsh
View file @
178bce28
...
@@ -26,9 +26,9 @@ cd () {
...
@@ -26,9 +26,9 @@ cd () {
elif
[[
"x
$*
"
==
"x...."
]]
;
then
elif
[[
"x
$*
"
==
"x...."
]]
;
then
cd
../../..
cd
../../..
elif
[[
"x
$*
"
==
"x....."
]]
;
then
elif
[[
"x
$*
"
==
"x....."
]]
;
then
cd
../../..
elif
[[
"x
$*
"
==
"x......"
]]
;
then
cd
../../../..
cd
../../../..
elif
[[
"x
$*
"
==
"x......"
]]
;
then
cd
../../../../..
else
else
builtin cd
"
$@
"
builtin cd
"
$@
"
fi
fi
...
...
lib/git.zsh
View file @
178bce28
...
@@ -58,7 +58,7 @@ function git_prompt_long_sha() {
...
@@ -58,7 +58,7 @@ function git_prompt_long_sha() {
# Get the status of the working tree
# Get the status of the working tree
git_prompt_status
()
{
git_prompt_status
()
{
INDEX
=
$(
git status
--porcelain
2> /dev/null
)
INDEX
=
$(
git status
--porcelain
-b
2> /dev/null
)
STATUS
=
""
STATUS
=
""
if
$(
echo
"
$INDEX
"
|
grep
'^?? '
&> /dev/null
)
;
then
if
$(
echo
"
$INDEX
"
|
grep
'^?? '
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS
"
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS
"
...
@@ -80,12 +80,23 @@ git_prompt_status() {
...
@@ -80,12 +80,23 @@ git_prompt_status() {
fi
fi
if
$(
echo
"
$INDEX
"
|
grep
'^ D '
&> /dev/null
)
;
then
if
$(
echo
"
$INDEX
"
|
grep
'^ D '
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_DELETED$STATUS
"
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_DELETED$STATUS
"
elif
$(
echo
"
$INDEX
"
|
grep
'^D '
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_DELETED$STATUS
"
elif
$(
echo
"
$INDEX
"
|
grep
'^AD '
&> /dev/null
)
;
then
elif
$(
echo
"
$INDEX
"
|
grep
'^AD '
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_DELETED$STATUS
"
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_DELETED$STATUS
"
fi
fi
if
$(
echo
"
$INDEX
"
|
grep
'^UU '
&> /dev/null
)
;
then
if
$(
echo
"
$INDEX
"
|
grep
'^UU '
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS
"
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS
"
fi
fi
if
$(
echo
"
$INDEX
"
|
grep
'^## .*ahead'
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_AHEAD$STATUS
"
fi
if
$(
echo
"
$INDEX
"
|
grep
'^## .*behind'
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_BEHIND$STATUS
"
fi
if
$(
echo
"
$INDEX
"
|
grep
'^## .*diverged'
&> /dev/null
)
;
then
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_DIVERGED$STATUS
"
fi
echo
$STATUS
echo
$STATUS
}
}
...
...
lib/termsupport.zsh
View file @
178bce28
...
@@ -8,6 +8,8 @@ function title {
...
@@ -8,6 +8,8 @@ function title {
fi
fi
if
[[
"
$TERM
"
==
screen
*
]]
;
then
if
[[
"
$TERM
"
==
screen
*
]]
;
then
print
-Pn
"
\e
k
$1
:q
\e\\
"
#set screen hardstatus, usually truncated at 20 chars
print
-Pn
"
\e
k
$1
:q
\e\\
"
#set screen hardstatus, usually truncated at 20 chars
elif
[[
"
$TERM_PROGRAM
"
==
"Apple_Terminal"
]]
;
then
print
-Pn
"
\e
]1;
$1
:q
\a
"
#set icon (=tab) name (will override window name on broken terminal)
elif
[[
"
$TERM
"
==
xterm
*
]]
||
[[
$TERM
==
rxvt
*
]]
||
[[
"
$TERM_PROGRAM
"
==
"iTerm.app"
]]
;
then
elif
[[
"
$TERM
"
==
xterm
*
]]
||
[[
$TERM
==
rxvt
*
]]
||
[[
"
$TERM_PROGRAM
"
==
"iTerm.app"
]]
;
then
print
-Pn
"
\e
]2;
$2
:q
\a
"
#set window name
print
-Pn
"
\e
]2;
$2
:q
\a
"
#set window name
print
-Pn
"
\e
]1;
$1
:q
\a
"
#set icon (=tab) name (will override window name on broken terminal)
print
-Pn
"
\e
]1;
$1
:q
\a
"
#set icon (=tab) name (will override window name on broken terminal)
...
...
plugins/git-remote-branch/git-remote-branch.plugin.zsh
0 → 100644
View file @
178bce28
_git_remote_branch
()
{
ref
=
$(
git symbolic-ref HEAD 2> /dev/null
)
if
[[
-n
$ref
]]
;
then
if
((
CURRENT
==
2
))
;
then
# first arg: operation
compadd create publish rename delete track
elif
((
CURRENT
==
3
))
;
then
# second arg: remote branch name
compadd
`
git branch
-r
|
grep
-v
HEAD |
sed
"s/.*
\/
//"
|
sed
"s/ //g"
`
elif
((
CURRENT
==
4
))
;
then
# third arg: remote name
compadd
`
git remote
`
fi
else
;
_files
fi
}
compdef _git_remote_branch grb
plugins/git/git.plugin.zsh
View file @
178bce28
...
@@ -9,6 +9,7 @@ alias gup='git pull --rebase'
...
@@ -9,6 +9,7 @@ alias gup='git pull --rebase'
compdef _git
gup
=
git-fetch
compdef _git
gup
=
git-fetch
alias
gp
=
'git push'
alias
gp
=
'git push'
compdef _git
gp
=
git-push
compdef _git
gp
=
git-push
alias
gd
=
'git diff'
gdv
()
{
git diff
-w
"
$@
"
| view -
}
gdv
()
{
git diff
-w
"
$@
"
| view -
}
compdef _git
gdv
=
git-diff
compdef _git
gdv
=
git-diff
alias
gc
=
'git commit -v'
alias
gc
=
'git commit -v'
...
@@ -24,6 +25,7 @@ alias gba='git branch -a'
...
@@ -24,6 +25,7 @@ alias gba='git branch -a'
compdef _git
gba
=
git-branch
compdef _git
gba
=
git-branch
alias
gcount
=
'git shortlog -sn'
alias
gcount
=
'git shortlog -sn'
compdef
gcount
=
git
compdef
gcount
=
git
alias
gcl
=
'git config --list'
alias
gcp
=
'git cherry-pick'
alias
gcp
=
'git cherry-pick'
compdef _git
gcp
=
git-cherry-pick
compdef _git
gcp
=
git-cherry-pick
alias
glg
=
'git log --stat --max-count=5'
alias
glg
=
'git log --stat --max-count=5'
...
...
plugins/history/history.plugin.zsh
0 → 100644
View file @
178bce28
alias
h
=
'history'
function
hs
{
history
|
grep
$*
}
alias
hsi
=
'hs -i'
plugins/osx/osx.plugin.zsh
View file @
178bce28
...
@@ -2,10 +2,9 @@
...
@@ -2,10 +2,9 @@
# FILE: osx.plugin.zsh
# FILE: osx.plugin.zsh
# DESCRIPTION: oh-my-zsh plugin file.
# DESCRIPTION: oh-my-zsh plugin file.
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
# VERSION: 1.
0.1
# VERSION: 1.
1.0
# ------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
function
tab
()
{
function
tab
()
{
local command
=
"cd
\\\"
$PWD
\\\"
"
local command
=
"cd
\\\"
$PWD
\\\"
"
((
$#
>
0
))
&&
command
=
"
${
command
}
;
$*
"
((
$#
>
0
))
&&
command
=
"
${
command
}
;
$*
"
...
@@ -35,9 +34,67 @@ EOF
...
@@ -35,9 +34,67 @@ EOF
launch session "Default Session"
launch session "Default Session"
set current_session to current session
set current_session to current session
tell current_session
tell current_session
write text "
${
command
}
"
write text "
${
command
}
; clear;"
end tell
end tell
end tell
EOF
}
}
function
vsplit_tab
()
{
local command
=
"cd
\\\"
$PWD
\\\"
"
((
$#
>
0
))
&&
command
=
"
${
command
}
;
$*
"
the_app
=
$(
osascript 2>/dev/null
<<
EOF
tell application "System Events"
name of first item of (every process whose frontmost is true)
end tell
EOF
)
[[
"
$the_app
"
==
'iTerm'
]]
&&
{
osascript 2>/dev/null
<<
EOF
tell application "iTerm" to activate
tell application "System Events"
tell process "iTerm"
tell menu item "Split Vertically With Current Profile" of menu "Shell" of menu bar item "Shell" of menu bar 1
click
end tell
end tell
keystroke "
${
command
}
; clear;"
keystroke return
end tell
EOF
}
}
function
split_tab
()
{
local command
=
"cd
\\\"
$PWD
\\\"
"
((
$#
>
0
))
&&
command
=
"
${
command
}
;
$*
"
the_app
=
$(
osascript 2>/dev/null
<<
EOF
tell application "System Events"
name of first item of (every process whose frontmost is true)
end tell
EOF
)
[[
"
$the_app
"
==
'iTerm'
]]
&&
{
osascript 2>/dev/null
<<
EOF
tell application "iTerm" to activate
tell application "System Events"
tell process "iTerm"
tell menu item "Split Horizontally With Current Profile" of menu "Shell" of menu bar item "Shell" of menu bar 1
click
end tell
end tell
end tell
end tell
keystroke "
${
command
}
; clear;"
keystroke return
end tell
end tell
EOF
EOF
}
}
...
...
plugins/symfony/symfony.plugin.zsh
0 → 100644
View file @
178bce28
# symfony basic command completion
_symfony_get_command_list
()
{
./symfony |
sed
"1,/Available tasks/d"
|
awk
'BEGIN { cat=null; } /^[A-Za-z]+$/ { cat = $1; } /^ :[a-z]+/ { print cat $1; }'
}
_symfony
()
{
if
[
-f
symfony
]
;
then
compadd
`
_symfony_get_command_list
`
fi
}
compdef _symfony symfony
themes/cloud.zsh-theme
View file @
178bce28
PROMPT='%{$fg_bold[cyan]%}☁ %{$fg_bold[green]%}%p %{$fg[green]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
if [[ -z $ZSH_THEME_CLOUD_PREFIX ]]; then
ZSH_THEME_CLOUD_PREFIX='☁'
fi
PROMPT='%{$fg_bold[cyan]%}$ZSH_THEME_CLOUD_PREFIX %{$fg_bold[green]%}%p %{$fg[green]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[%{$fg[cyan]%}"
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[%{$fg[cyan]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
...
...
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