diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/pj/README.md | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/pj/README.md')
-rw-r--r-- | zsh/oh-my-zsh/plugins/pj/README.md | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/zsh/oh-my-zsh/plugins/pj/README.md b/zsh/oh-my-zsh/plugins/pj/README.md deleted file mode 100644 index 27e5638..0000000 --- a/zsh/oh-my-zsh/plugins/pj/README.md +++ /dev/null @@ -1,45 +0,0 @@ -# pj - -The `pj` plugin (short for `Project Jump`) allows you to define several -folders where you store your projects, so that you can jump there directly -by just using the name of the project directory. - -Original idea and code by Jan De Poorter ([@DefV](https://github.com/DefV)) -Source: https://gist.github.com/pjaspers/368394#gistcomment-1016 - -## Usage - -1. Enable the `pj` plugin: - - ```zsh - plugins=(... pj) - ``` - -2. Set `$PROJECT_PATHS` in your ~/.zshrc: - - ```zsh - PROJECT_PATHS=(~/src ~/work ~/"dir with spaces") - ``` - -You can now use one of the following commands: - -##### `pj my-project`: - -`cd` to the directory named "my-project" found in one of the `$PROJECT_PATHS` -directories. If there are several directories named the same, the first one -to appear in `$PROJECT_PATHS` has preference. - -For example: -```zsh -PROJECT_PATHS=(~/code ~/work) -$ ls ~/code # ~/code/blog ~/code/react -$ ls ~/work # ~/work/blog ~/work/project -$ pj blog # <-- will cd to ~/code/blog -``` - -##### `pjo my-project` - -Open the project directory with your defined `$EDITOR`. This follows the same -directory rules as the `pj` command above. - -Note: `pjo` is an alias of `pj open`. |