]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/history/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / history / README.md
1 # history plugin
2
3 Provides a couple of convenient aliases for using the `history` command to examine your command line history.
4
5 To use it, add `history` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... history)
9 ```
10
11 ## Aliases
12
13 | Alias | Command              | Description                                                      |
14 |-------|----------------------|------------------------------------------------------------------|
15 | `h`   | `history`            | Prints your command history                                      |
16 | `hs`  | `history \| grep`    | Use grep to search your command history                          |
17 | `hsi` | `history \| grep -i` | Use grep to do a case-insensitive search of your command history |