1
0
Fork 0
mirror of synced 2024-06-16 13:51:10 -04:00
zimfw/modules/history/README.md

29 lines
982 B
Markdown
Raw Normal View History

2015-12-15 02:45:18 -05:00
History
=======
Sets sane default history options.
2015-12-19 09:48:29 -05:00
History file is set to save in `${ZDOTDIR:-${HOME}}/.zhistory`
2015-12-15 02:45:18 -05:00
(most likely ~/.zhistory)
Zsh Options
-----------
| Option | Effect |
| ------ | ------ |
| BANG_HIST | Use csh-style '!' expansion |
| EXTENDED_HISTORY | Save timestamps along with commands |
| INC_APPEND_HISTORY | Commands are added to the history file immediately upon execution |
| SHARE_HISTORY | Causes all terminals to share the same history 'session' |
| HIST_IGNORE_DUPS | Do not enter immediate duplicates into history |
| HIST_IGNORE_ALL_DUPS | If duplicate is to be added, remove older instance in history |
| HIST_IGNORE_SPACE | Do not add any commands to history that begin with a space |
| HIST_SAVE_NO_DUPS | When saving, older commands that duplicate newer commands are omitted |
| HIST_VERIFY | Upon history 'selection', don't execute immediately. Require a carriage return |
Aliases
-------
* `history-stat` lists the 10 most used commands