m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 08:13:40 -05:00

Add 'zero' event

Close #3263
This commit is contained in:
Junegunn Choi
2023-04-26 15:13:08 +09:00
parent 65dd2bb429
commit cf95e44cb4
6 changed files with 49 additions and 7 deletions

View File

@@ -94,6 +94,7 @@ const (
Load
Focus
One
Zero
AltBS
@@ -283,6 +284,15 @@ type Event struct {
MouseEvent *MouseEvent
}
func (e Event) Is(types ...EventType) bool {
for _, t := range types {
if e.Type == t {
return true
}
}
return false
}
type MouseEvent struct {
Y int
X int