This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # README: This allows you to store in your history file only commands | |
| # with a successful status (or forced exited by you with signal 2). | |
| # Put this content in your .zhsrc | |
| # CREDITS: inspired by https://scarff.id.au/blog/2019/zsh-history-conditional-on-command-success/ | |
| # This function will be hooked to zshaddhistory. | |
| # zshaddhistory is called before a history line is saved. See zshmisc(1). | |
| function my_zshaddhistory() { | |
| # Prevent the command from being written to history before it's | |
| # executed; save it to LASTHIST instead. Write it to history |