Add header-click event for reporting clicks within header.

Sets $FZF_HEADERCLICK_ROW and $FZF_HEADERCLICK_LINE env vars with
coordinates of last click inside and relative to the header.
pull/3766/head
Clem Rowe 1 month ago
parent dba1644518
commit 09860f319e

@ -708,6 +708,8 @@ func parseKeyChordsImpl(str string, message string, exit func(string)) map[tui.E
add(tui.Jump) add(tui.Jump)
case "jump-cancel": case "jump-cancel":
add(tui.JumpCancel) add(tui.JumpCancel)
case "header-click":
add(tui.HeaderClick)
case "alt-enter", "alt-return": case "alt-enter", "alt-return":
chords[tui.CtrlAltKey('m')] = key chords[tui.CtrlAltKey('m')] = key
case "alt-space": case "alt-space":

@ -298,6 +298,8 @@ type Terminal struct {
areaLines int areaLines int
areaColumns int areaColumns int
forcePreview bool forcePreview bool
headerClickLine int
headerClickColumn int
} }
type selectedItem struct { type selectedItem struct {
@ -857,6 +859,8 @@ func (t *Terminal) environ() []string {
env = append(env, fmt.Sprintf("FZF_LINES=%d", t.areaLines)) env = append(env, fmt.Sprintf("FZF_LINES=%d", t.areaLines))
env = append(env, fmt.Sprintf("FZF_COLUMNS=%d", t.areaColumns)) env = append(env, fmt.Sprintf("FZF_COLUMNS=%d", t.areaColumns))
env = append(env, fmt.Sprintf("FZF_POS=%d", util.Min(t.merger.Length(), t.cy+1))) env = append(env, fmt.Sprintf("FZF_POS=%d", util.Min(t.merger.Length(), t.cy+1)))
env = append(env, fmt.Sprintf("FZF_HEADERCLICK_LINE=%d", t.headerClickLine))
env = append(env, fmt.Sprintf("FZF_HEADERCLICK_COLUMN=%d", t.headerClickColumn))
return env return env
} }
@ -3989,10 +3993,10 @@ func (t *Terminal) Loop() {
} }
if me.Down { if me.Down {
mx = util.Constrain(mx-t.promptLen, 0, len(t.input)) mx_cons := util.Constrain(mx-t.promptLen, 0, len(t.input))
if my == t.promptLine() && mx >= 0 { if my == t.promptLine() && mx_cons >= 0 {
// Prompt // Prompt
t.cx = mx + t.xoffset t.cx = mx_cons + t.xoffset
} else if my >= min { } else if my >= min {
t.vset(t.offset + my - min) t.vset(t.offset + my - min)
req(reqList) req(reqList)
@ -4007,6 +4011,35 @@ func (t *Terminal) Loop() {
} }
} }
return doActions(actionsFor(evt)) return doActions(actionsFor(evt))
} else {
// Header
lineOffset := 0
numLines := t.visibleHeaderLines()
if !t.headerFirst {
// header line offset
if t.noSeparatorLine() {
lineOffset = 1
} else {
lineOffset = 2
}
} else {
// adjust numLines for too-small window
numItems := t.areaLines - numLines
if !t.noSeparatorLine() {
numItems -= 1
}
if numItems < 0 {
numLines += numItems
}
}
my = util.Constrain(my-lineOffset, -1, numLines)
mx -= 2 // gutter
if my >= 0 && my < numLines && mx >= 0 {
t.headerClickLine = my
t.headerClickColumn = mx
evt := tui.HeaderClick
return doActions(actionsFor(evt))
}
} }
} }
case actReload, actReloadSync: case actReload, actReloadSync:

@ -130,6 +130,7 @@ const (
Result Result
Jump Jump
JumpCancel JumpCancel
HeaderClick
) )
func (t EventType) AsEvent() Event { func (t EventType) AsEvent() Event {

Loading…
Cancel
Save