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`
|
2023-08-27 23:24:59 +02:00
|
|
|
if ! [ -z "$_hishtory_command " ]; then
|
|
|
|
hishtory presaveHistoryEntry zsh "$_hishtory_command" $_hishtory_start_time
|
|
|
|
fi
|
2022-04-18 04:54:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function _hishtory_precmd() {
|
|
|
|
# Runs after the command is executed in order to render the prompt
|
2022-10-01 08:51:05 +02:00
|
|
|
# $? contains the exit code
|
2022-04-18 04:54:17 +02:00
|
|
|
_hishtory_exit_code=$?
|
|
|
|
if [ -n "$_hishtory_first_prompt" ]; then
|
|
|
|
unset _hishtory_first_prompt
|
|
|
|
return
|
|
|
|
fi
|
2022-10-24 02:35:02 +02:00
|
|
|
(hishtory saveHistoryEntry zsh $_hishtory_exit_code "$_hishtory_command" $_hishtory_start_time &) # Background Run
|
|
|
|
# hishtory saveHistoryEntry zsh $_hishtory_exit_code "$_hishtory_command" $_hishtory_start_time # Foreground Run
|
2022-04-18 04:54:17 +02:00
|
|
|
}
|
2022-10-16 21:43:16 +02:00
|
|
|
|
|
|
|
_hishtory_widget() {
|
2022-11-20 07:27:08 +01:00
|
|
|
BUFFER=$(HISHTORY_TERM_INTEGRATION=1 hishtory tquery $BUFFER)
|
2022-10-16 21:43:16 +02:00
|
|
|
CURSOR=${#BUFFER}
|
|
|
|
zle reset-prompt
|
|
|
|
}
|
|
|
|
|
|
|
|
_hishtory_bind_control_r() {
|
|
|
|
zle -N _hishtory_widget
|
|
|
|
bindkey '^R' _hishtory_widget
|
|
|
|
}
|
|
|
|
|
|
|
|
[ "$(hishtory config-get enable-control-r)" = true ] && _hishtory_bind_control_r
|