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

Support binding of left-click and right-click

left-click and right-click are respectively bound to "ignore" and
"toggle" (after implicitly moving the cursor) by default.

Close #1130
This commit is contained in:
Junegunn Choi
2017-12-01 02:11:20 +09:00
parent 9615c4edf1
commit b3b101a89c
6 changed files with 31 additions and 10 deletions

View File

@@ -44,6 +44,8 @@ const (
Resize
Mouse
DoubleClick
LeftClick
RightClick
BTab
BSpace
@@ -185,6 +187,7 @@ type MouseEvent struct {
Y int
X int
S int
Left bool
Down bool
Double bool
Mod bool