mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-12-23 11:29:01 +00:00
Add 'put' action for putting the character to the prompt
fzf --bind 'space:preview(date)+put' Close #2456
This commit is contained in:
parent
f799b568d1
commit
673c5d886d
@ -860,6 +860,7 @@ A key or an event can be bound to one or more of the following actions.
|
|||||||
\fBpreview-top\fR
|
\fBpreview-top\fR
|
||||||
\fBprevious-history\fR (\fIctrl-p\fR on \fB--history\fR)
|
\fBprevious-history\fR (\fIctrl-p\fR on \fB--history\fR)
|
||||||
\fBprint-query\fR (print query and exit)
|
\fBprint-query\fR (print query and exit)
|
||||||
|
\fBput\fR (put the character to the prompt)
|
||||||
\fBrefresh-preview\fR
|
\fBrefresh-preview\fR
|
||||||
\fBreload(...)\fR (see below for the details)
|
\fBreload(...)\fR (see below for the details)
|
||||||
\fBreplace-query\fR (replace query string with the current selection)
|
\fBreplace-query\fR (replace query string with the current selection)
|
||||||
|
@ -981,6 +981,12 @@ func parseKeymap(keymap map[tui.Event][]action, str string) {
|
|||||||
appendAction(actEnableSearch)
|
appendAction(actEnableSearch)
|
||||||
case "disable-search":
|
case "disable-search":
|
||||||
appendAction(actDisableSearch)
|
appendAction(actDisableSearch)
|
||||||
|
case "put":
|
||||||
|
if key.Type == tui.Rune && unicode.IsGraphic(key.Char) {
|
||||||
|
appendAction(actRune)
|
||||||
|
} else {
|
||||||
|
errorExit("unable to put non-printable character: " + pair[0])
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
t := isExecuteAction(specLower)
|
t := isExecuteAction(specLower)
|
||||||
if t == actIgnore {
|
if t == actIgnore {
|
||||||
|
Loading…
Reference in New Issue
Block a user