hishtory/client/lib/config.sh

58 lines
1.9 KiB
Bash
Raw Permalink Normal View History

2022-01-10 01:39:13 +01:00
# This script should be sourced inside of .bashrc to integrate bash with hishtory
# Include guard. This file is sourced in multiple places, but we want it to only execute once.
# This trick is from https://stackoverflow.com/questions/7518584/is-there-any-mechanism-in-shell-script-alike-include-guard-in-c
if [ -n "$__hishtory_bash_config_sourced" ]; then return; fi
__hishtory_bash_config_sourced=`date`
# For detecting color rendering support for this terminal, see #134
hishtory getColorSupport
export _hishtory_tui_color=$?
# Implementation of running before/after every command based on https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/
function __hishtory_precommand() {
if [ -z "${HISHTORY_AT_PROMPT:-}" ]; then
2022-01-10 01:39:13 +01:00
return
fi
unset HISHTORY_AT_PROMPT
# Run before every command
HISHTORY_START_TIME=`hishtory getTimestamp`
CMD=`history 1`
if ! [ -z "CMD " ] ; then
(hishtory presaveHistoryEntry bash "$CMD" $HISHTORY_START_TIME &) # Background Run
# hishtory presaveHistoryEntry bash "$CMD" $HISHTORY_START_TIME # Foreground Run
fi
2022-01-10 01:39:13 +01:00
}
trap "__hishtory_precommand" DEBUG
2022-01-10 01:39:13 +01:00
HISHTORY_FIRST_PROMPT=1
function __hishtory_postcommand() {
2022-04-08 07:53:39 +02:00
EXIT_CODE=$?
2022-01-10 01:39:13 +01:00
HISHTORY_AT_PROMPT=1
if [ -n "${HISHTORY_FIRST_PROMPT:-}" ]; then
2022-01-10 01:39:13 +01:00
unset HISHTORY_FIRST_PROMPT
return
fi
# Run after every prompt
(hishtory saveHistoryEntry bash $EXIT_CODE "`history 1`" $HISHTORY_START_TIME &) # Background Run
# hishtory saveHistoryEntry bash $EXIT_CODE "`history 1`" $HISHTORY_START_TIME # Foreground Run
(hishtory updateLocalDbFromRemote &)
2022-01-10 01:39:13 +01:00
}
PROMPT_COMMAND="__hishtory_postcommand; $PROMPT_COMMAND"
export HISTTIMEFORMAT=$HISTTIMEFORMAT
2022-10-18 05:18:28 +02:00
__history_control_r() {
READLINE_LINE=$(HISHTORY_TERM_INTEGRATION=1 hishtory tquery "$READLINE_LINE")
2022-10-18 05:18:28 +02:00
READLINE_POINT=0x7FFFFFFF
}
__hishtory_bind_control_r() {
bind -x '"\C-r": __history_control_r'
}
[ "$(hishtory config-get enable-control-r)" = true ] && __hishtory_bind_control_r