2022-04-18 08:06:01 +02:00
|
|
|
autoload -U add-zsh-hook
|
2022-04-18 04:54:17 +02:00
|
|
|
add-zsh-hook zshaddhistory _hishtory_add
|
|
|
|
add-zsh-hook precmd _hishtory_precmd
|
|
|
|
|
|
|
|
_hishtory_first_prompt=1
|
|
|
|
|
|
|
|
function _hishtory_add() {
|
|
|
|
# Runs after <ENTER>, but before the command is executed
|
|
|
|
# $1 contains the command that was run
|
|
|
|
_hishtory_command=$1
|
2022-04-19 07:36:57 +02:00
|
|
|
_hishtory_start_time=`date +%s`
|
2022-04-18 04:54:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function _hishtory_precmd() {
|
|
|
|
# Runs after the command is executed in order to render the prompt
|
|
|
|
# $? contains the exit code (TODO: is this always true? Could other precmds break this?)
|
|
|
|
_hishtory_exit_code=$?
|
|
|
|
if [ -n "$_hishtory_first_prompt" ]; then
|
|
|
|
unset _hishtory_first_prompt
|
|
|
|
return
|
|
|
|
fi
|
2022-04-22 07:25:24 +02:00
|
|
|
(hishtory saveHistoryEntry zsh $_hishtory_exit_code "$_hishtory_command" $_hishtory_start_time &)
|
2022-04-18 04:54:17 +02:00
|
|
|
}
|