Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
bc00362a
Commit
bc00362a
authored
Feb 09, 2013
by
Sébastien M-B
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master'
parents
2595484a
fce68bbb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
5 deletions
+47
-5
pj.plugin.zsh
plugins/pj/pj.plugin.zsh
+42
-0
rbenv.plugin.zsh
plugins/rbenv/rbenv.plugin.zsh
+5
-5
No files found.
plugins/pj/pj.plugin.zsh
0 → 100644
View file @
bc00362a
#!/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
plugins/rbenv/rbenv.plugin.zsh
View file @
bc00362a
...
@@ -32,11 +32,11 @@ for rbenvdir in "${rbenvdirs[@]}" ; do
...
@@ -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"
\
-
E
e
"s|
$(
echo
$rbenv_path
)
|
$fg
[magenta]
\$
rbenv_path
$reset_color
|g"
\
-e
"s|
$(
echo
$rbenv_path
)
|
$fg
[magenta]
\$
rbenv_path
$reset_color
|g"
\
-
E
e
"s/
$current_ruby
@global/
$fg
[yellow]&
$reset_color
/g"
\
-e
"s/
$current_ruby
@global/
$fg
[yellow]&
$reset_color
/g"
\
-
E
e
"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
()
{
...
...
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