histui/source/histui_enable.sh.inc
2024-08-03 15:14:52 +02:00

10 lines
257 B
PHP

function _histui_run() {
COMMANDFILE="${XDG_CACHE_HOME}/histui_command.txt"
histui tui 3> "${COMMANDFILE}"
READLINE_LINE=$(cat "${COMMANDFILE}")
READLINE_POINT=${#READLINE_LINE}
}
bind -x '"\e[A": _histui_run'
bind -x '"\C-r": _histui_run'