From 607eacf8c73f60d778c4a0bf303f1593704b17c3 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 17 May 2023 10:55:12 +0900 Subject: Allow unbind(focus) Fix #3279 --- src/terminal.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src') diff --git a/src/terminal.go b/src/terminal.go index 8feb2799..f25cd2f3 100644 --- a/src/terminal.go +++ b/src/terminal.go @@ -2719,11 +2719,6 @@ func (t *Terminal) Loop() { } } - var onFocus []*action - if actions, prs := t.keymap[tui.Focus.AsEvent()]; prs { - onFocus = actions - } - go func() { var focusedIndex int32 = minItem.Index() var version int64 = -1 @@ -2764,7 +2759,7 @@ func (t *Terminal) Loop() { t.track = trackDisabled t.printInfo() } - if onFocus != nil && focusChanged { + if onFocus, prs := t.keymap[tui.Focus.AsEvent()]; prs && focusChanged { t.serverChan <- onFocus } if focusChanged || version != t.version { -- cgit v1.2.3