Eso es posible; en principio modifiqué la _kill
finalización para que funcione también para eventos históricos.
Aquí hay un ejemplo; después de seleccionar una entrada, presiona [ENTER] una vez para aceptar el número de evento (la línea de comando lee y luego fe hc 780
) y presiona [ENTER] nuevamente para ejecutar el comando. (Use en fc
lugar de hc
si desea modificar la línea de comando antes de la ejecución).
$ hc Makefile[TAB]
history event
1906 9.3.2013 18:10 vi Makefile
1867 9.3.2013 17:26 less Makefile
780 3.2.2013 17:54 cat Makefile
776 3.2.2013 17:51 cat ../Makefile
Para usarlo, coloque los archivos adjuntos en un directorio en su $fpath
y agregue estas líneas en su ~/.zshrc
:
zstyle ':completion:*:historyevent' command 'fc -dE -lr 1'
zstyle ':completion:*:historyevent' sort no
Finalmente, comience una nueva zsh
sesión.
Cuidado, es una solución rápida y sucia, pero funcionó bien por algún tiempo.
_historyevent
#autoload
local out histevent list expl match desc listargs all nm ret=1
_tags historyevent || return 1
all=(-U)
match="*[[:blank:]]*[[/[:blank:]]$PREFIX*$SUFFIX*"
nm="$compstate[nmatches]"
out=( "${(@f)$(_call_program historyevent fc -l 2>/dev/null)}" )
desc="$out[1]"
out=( "${(@M)out[2,-1]:#${~match}}" )
histevent=( "${(@)${(@M)out##[^0-9]#[0-9]#}##*[[:blank:]]}" )
if zstyle -T ":completion:${curcontext}:historyevent" verbose; then
list=( "${(@Mr:COLUMNS-1:)out}" )
desc=(-ld list)
else
desc=()
fi
_wanted processes expl 'history event' \
compadd "$@" "$desc[@]" "$all[@]" -a - histevent && ret=0
if [[ -n "$all" ]]; then
zstyle -s ":completion:${curcontext}:historyevent" insert-ids out || out=menu
case "$out" in
menu) compstate[insert]=menu ;;
single) [[ $compstate[nmatches] -ne nm+1 ]] && compstate[insert]= ;;
*) [[ ${#:-$PREFIX$SUFFIX} -gt ${#compstate[unambiguous]} ]] &&
compstate[insert]=menu ;;
esac
fi
return ret
_fc
#compdef fc
local curcontext="$curcontext" line state ret=1
_arguments -C \
'-e[editor command]' \
'-l[list last history events]' \
'-n[suppress numbers]' \
'-r[reverse order]' \
'*:history event:->historyevent' && ret=0
if [[ -n "$state" ]]; then
_alternative \
'historyevent:: _historyevent' && ret=0
fi
return ret