Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
This commit is contained in:
commit
5eb3ec6428
42
plugins/pj/pj.plugin.zsh
Normal file
42
plugins/pj/pj.plugin.zsh
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
#
|
||||||
|
# Original idea by DefV (Jan De Poorter)
|
||||||
|
# Source: https://gist.github.com/pjaspers/368394#comment-1016
|
||||||
|
#
|
||||||
|
# Usage:
|
||||||
|
# - Set `$PROJECT_PATHS` in your ~/.zshrc
|
||||||
|
# e.g.: PROJECT_PATHS=(~/src ~/work)
|
||||||
|
# - In ZSH you now can open a project directory with the command: `pj my-project`
|
||||||
|
# the plugin will locate the `my-project` directory in one of the $PROJECT_PATHS
|
||||||
|
# Also tab completion is supported.
|
||||||
|
# - `pjo my-project` will open the directory in $EDITOR
|
||||||
|
#
|
||||||
|
|
||||||
|
function pj() {
|
||||||
|
cmd="cd"
|
||||||
|
file=$1
|
||||||
|
|
||||||
|
if [[ "open" == "$file" ]] then
|
||||||
|
file=$2
|
||||||
|
cmd=(${(s: :)EDITOR})
|
||||||
|
fi
|
||||||
|
|
||||||
|
for project in $PROJECT_PATHS; do
|
||||||
|
if [[ -d $project/$file ]] then
|
||||||
|
$cmd "$project/$file"
|
||||||
|
unset project # Unset project var
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "No such project $1"
|
||||||
|
}
|
||||||
|
|
||||||
|
alias pjo="pj open"
|
||||||
|
|
||||||
|
function _pj () {
|
||||||
|
compadd `/bin/ls -l $PROJECT_PATHS 2>/dev/null | awk '{ print $9 }'`
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _pj pj
|
@ -32,11 +32,11 @@ for rbenvdir in "${rbenvdirs[@]}" ; do
|
|||||||
|
|
||||||
function gems {
|
function gems {
|
||||||
local rbenv_path=$(rbenv prefix)
|
local rbenv_path=$(rbenv prefix)
|
||||||
gem list $@ | sed \
|
gem list $@ | sed -E \
|
||||||
-Ee "s/\([0-9\.]+( .+)?\)/$fg[blue]&$reset_color/g" \
|
-e "s/\([0-9a-z, \.]+( .+)?\)/$fg[blue]&$reset_color/g" \
|
||||||
-Ee "s|$(echo $rbenv_path)|$fg[magenta]\$rbenv_path$reset_color|g" \
|
-e "s|$(echo $rbenv_path)|$fg[magenta]\$rbenv_path$reset_color|g" \
|
||||||
-Ee "s/$current_ruby@global/$fg[yellow]&$reset_color/g" \
|
-e "s/$current_ruby@global/$fg[yellow]&$reset_color/g" \
|
||||||
-Ee "s/$current_ruby$current_gemset$/$fg[green]&$reset_color/g"
|
-e "s/$current_ruby$current_gemset$/$fg[green]&$reset_color/g"
|
||||||
}
|
}
|
||||||
|
|
||||||
function rbenv_prompt_info() {
|
function rbenv_prompt_info() {
|
||||||
|
@ -25,6 +25,8 @@
|
|||||||
* `zcu` aliases `zeus cucumber`
|
* `zcu` aliases `zeus cucumber`
|
||||||
* `zucumber` aliases `zeus cucumber`
|
* `zucumber` aliases `zeus cucumber`
|
||||||
|
|
||||||
|
* `zspec` aliases `zeus rspec`
|
||||||
|
|
||||||
* `zt` aliases `zeus test`
|
* `zt` aliases `zeus test`
|
||||||
* `zest` aliases `zeus test`
|
* `zest` aliases `zeus test`
|
||||||
|
|
||||||
|
@ -40,6 +40,9 @@ alias zunner='zeus runner'
|
|||||||
alias zcu='zeus cucumber'
|
alias zcu='zeus cucumber'
|
||||||
alias zucumber='zeus cucumber'
|
alias zucumber='zeus cucumber'
|
||||||
|
|
||||||
|
# Rspec
|
||||||
|
alias zspec='zeus rspec'
|
||||||
|
|
||||||
# Test
|
# Test
|
||||||
alias zt='zeus test'
|
alias zt='zeus test'
|
||||||
alias zest='zeus test'
|
alias zest='zeus test'
|
||||||
|
Loading…
Reference in New Issue
Block a user