README.md 1.11 KB
Newer Older
1
2
3
4
## wd

**Maintainer:** [mfaerevaag](https://github.com/mfaerevaag)

5
`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. [Source](https://github.com/mfaerevaag/wd)
6
7
8
9
10

### Usage

 * Add warp point to current working directory:

11
        $ wd add foo
12
13
14

    If a warp point with the same name exists, use `add!` to overwrite it.

15
    Note, a warp point cannot contain colons, or only consist of only spaces and dots. The first will conflict in how `wd` stores the warp points, and the second will conflict other features, as below.
16

17
 * From an other directory (not necessarily), warp to `foo` with:
18

19
        $ wd foo
20

21
22
23
24
 * You can warp back to previous directory, and so on, with this dot syntax:

        $ wd ..
        $ wd ...
25
26
27
28
29

    This is a wrapper for the zsh `dirs` function.

 * Remove warp point test point:

30
        $ wd rm foo
31

32
 * List all warp points (stored in `~/.warprc`):
33

34
        $ wd ls
35

36
 * List warp points to current directory
37

38
        $ wd show
39
40

 * Print usage with no opts or the `help` argument.