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
525ee508
"vscode:/vscode.git/clone" did not exist on "1ad1c52797e99c1060301e55cb726e290a06d063"
Commit
525ee508
authored
Aug 10, 2016
by
Marc Cornellà
Browse files
Clean up comments in pj plugin file and reorganise
parent
75f2f4e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/pj/pj.plugin.zsh
View file @
525ee508
#!/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
#
alias
pjo
=
"pj open"
function
pj
()
{
function
pj
()
{
cmd
=
"cd"
file
=
$1
...
...
@@ -36,8 +23,6 @@ function pj() {
echo
"No such project
$1
"
}
alias
pjo
=
"pj open"
function
_pj
()
{
# might be possible to improve this using glob, without the basename trick
typeset
-a
projects
...
...
@@ -45,5 +30,4 @@ function _pj () {
projects
=
$projects
:t
_arguments
"*:file:(
$projects
)"
}
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