mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-05 08:41:51 +00:00
Add ignore
action for --bind
This commit is contained in:
parent
8e7164553f
commit
9fca611c4a
@ -391,6 +391,8 @@ func parseKeymap(keymap map[int]actionType, toggleSort bool, str string) (map[in
|
|||||||
key := keys[0]
|
key := keys[0]
|
||||||
act := strings.ToLower(pair[1])
|
act := strings.ToLower(pair[1])
|
||||||
switch act {
|
switch act {
|
||||||
|
case "ignore":
|
||||||
|
keymap[key] = actIgnore
|
||||||
case "beginning-of-line":
|
case "beginning-of-line":
|
||||||
keymap[key] = actBeginningOfLine
|
keymap[key] = actBeginningOfLine
|
||||||
case "abort":
|
case "abort":
|
||||||
|
@ -716,6 +716,9 @@ func (t *Terminal) Loop() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
switch action {
|
switch action {
|
||||||
|
case actIgnore:
|
||||||
|
t.mutex.Unlock()
|
||||||
|
continue
|
||||||
case actInvalid:
|
case actInvalid:
|
||||||
t.mutex.Unlock()
|
t.mutex.Unlock()
|
||||||
continue
|
continue
|
||||||
|
Loading…
x
Reference in New Issue
Block a user