1# z - jump around
2
3This plugin defines the [z command](https://github.com/rupa/z) that tracks your most visited directories and allows you to access them with very few keystrokes.
4
5### Example
6Assume that you have previously visited directory `~/.oh-my-zsh/plugins`. From any folder in your command line, you can quickly access it by using a regex match to this folder:
7
8```bash
9/usr/bin$ z plug  # Even 'z p' might suffice
10~/.oh-my-zsh/plugins$
11```
12
13### Setup
14To enable z, add `z` to your `plugins` array in your zshrc file:
15
16```zsh
17plugins=(... z)
18```
19
20### Further reading
21
22For advanced usage and details of z, see [README](./README) (in man page format, copied from [rupa/z](https://github.com/rupa/z)).
23
24