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
525ee508
Commit
525ee508
authored
Aug 10, 2016
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up comments in pj plugin file and reorganise
parent
75f2f4e0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
18 deletions
+2
-18
pj.plugin.zsh
plugins/pj/pj.plugin.zsh
+2
-18
No files found.
plugins/pj/pj.plugin.zsh
View file @
525ee508
#!/bin/zsh
alias
pjo
=
"pj open"
#
# 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
()
{
function
pj
()
{
cmd
=
"cd"
cmd
=
"cd"
file
=
$1
file
=
$1
...
@@ -36,8 +23,6 @@ function pj() {
...
@@ -36,8 +23,6 @@ function pj() {
echo
"No such project
$1
"
echo
"No such project
$1
"
}
}
alias
pjo
=
"pj open"
function
_pj
()
{
function
_pj
()
{
# might be possible to improve this using glob, without the basename trick
# might be possible to improve this using glob, without the basename trick
typeset
-a
projects
typeset
-a
projects
...
@@ -45,5 +30,4 @@ function _pj () {
...
@@ -45,5 +30,4 @@ function _pj () {
projects
=
$projects
:t
projects
=
$projects
:t
_arguments
"*:file:(
$projects
)"
_arguments
"*:file:(
$projects
)"
}
}
compdef _pj pj
compdef _pj pj
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