my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
742 B

3 years ago
  1. # history plugin
  2. Provides a couple of convenient aliases for using the `history` command to examine your command line history.
  3. To use it, add `history` to the plugins array in your zshrc file:
  4. ```zsh
  5. plugins=(... history)
  6. ```
  7. ## Aliases
  8. | Alias | Command | Description |
  9. |-------|----------------------|------------------------------------------------------------------|
  10. | `h` | `history` | Prints your command history |
  11. | `hs` | `history \| grep` | Use grep to search your command history |
  12. | `hsi` | `history \| grep -i` | Use grep to do a case-insensitive search of your command history |