diff options
author | Markus Faerevaag <m@frv.ag> | 2015-01-26 00:13:39 +0100 |
---|---|---|
committer | Markus Faerevaag <m@frv.ag> | 2015-01-26 00:13:39 +0100 |
commit | 4533c7a31c737622782ce3233d2eb536f9cb4f2e (patch) | |
tree | 7505640b2189e11c291dc628d3e4c83deb8e2158 /plugins/wd/README.md | |
parent | c78277fd8bda5fec87504469afdf121355876006 (diff) | |
download | zsh-4533c7a31c737622782ce3233d2eb536f9cb4f2e.tar.gz zsh-4533c7a31c737622782ce3233d2eb536f9cb4f2e.tar.bz2 zsh-4533c7a31c737622782ce3233d2eb536f9cb4f2e.zip |
[wd] Update to v0.4.1
Diffstat (limited to 'plugins/wd/README.md')
-rw-r--r-- | plugins/wd/README.md | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/plugins/wd/README.md b/plugins/wd/README.md index bcfeab684..ed149eb3e 100644 --- a/plugins/wd/README.md +++ b/plugins/wd/README.md @@ -5,6 +5,8 @@ wd `wd` (*warp directory*) lets you jump to custom directories in zsh, without using `cd`. Why? Because `cd` seems ineffecient when the folder is frequently visited or has a long path. +*NOTE*: If you are not using zsh, check out the `ruby` branch which has `wd` implemented as a gem. + ### Setup @@ -33,7 +35,7 @@ Run either in terminal: * Add `wd` function to `.zshrc` (or `.profile` etc.): wd() { - . ~/paht/to/wd/wd.sh + . ~/path/to/cloned/repo/wd/wd.sh } * Install manpage. From `wd`'s base directory (requires root permissions): @@ -84,7 +86,15 @@ Also, you may have to force a rebuild of `zcompdump` by running: * List all warp points (stored in `~/.warprc`): - $ wd ls + $ wd list + + * List files in given warp point: + + $ wd ls foo + + * Show path of given warp point: + + $ wd path foo * List warp points to current directory, or optionally, path to given warp point: |