atuin + fzf

Even though I don't actually use Atuin, keep this code that I figured
out how to do anyway
main
Alpha Chen 1 week ago
parent 8929fcd600
commit 3b72b27e54
No known key found for this signature in database

@ -0,0 +1,29 @@
### atuin
export ATUIN_NOBIND=true
eval "$(atuin init zsh)"
# Reference: https://github.com/junegunn/fzf/discussions/3099
fzf-atuin-history-widget() {
local selected
setopt localoptions noglobsubst noposixbuiltins pipefail no_aliases noglob nobash_rematch 2> /dev/null
selected="$(atuin history list --format "{time} {command}" --reverse false --print0 |
FZF_DEFAULT_OPTS=$(__fzf_defaults "" "-n3..-2 --scheme=history --bind=ctrl-r:toggle-sort --wrap-sign '\t↳ ' --highlight-line ${FZF_CTRL_R_OPTS-} --query=${(qqq)LBUFFER} +m --read0") \
FZF_DEFAULT_OPTS_FILE='' $(__fzfcmd))"
local ret=$?
if [ -n "$selected" ]; then
if [[ $(awk '{print $1; exit}' <<< "$selected") =~ ^[1-9][0-9]* ]]; then
zle vi-fetch-history -n $MATCH
else # selected is a custom query, not from history
LBUFFER="$selected"
fi
fi
zle -U "$selected"
zle kill-buffer
zle reset-prompt
return $ret
}
# zle -N fzf-history-widget
# bindkey '^R' fzf-history-widget
# vim: ft=zsh
Loading…
Cancel
Save