m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 15:53:39 -05:00

Add CtrlCaret keyboard event to FullscreenRenderer

This commit is contained in:
Vlastimil Ovčáčík
2021-09-20 20:19:11 +02:00
committed by Junegunn Choi
parent 4271e9cffa
commit 09700f676b
2 changed files with 11 additions and 9 deletions

View File

@@ -296,6 +296,8 @@ func (r *FullscreenRenderer) GetChar() Event {
return Event{CtrlBackSlash, 0, nil}
case tcell.KeyCtrlRightSq:
return Event{CtrlRightBracket, 0, nil}
case tcell.KeyCtrlCarat:
return Event{CtrlCaret, 0, nil}
case tcell.KeyCtrlUnderscore:
return Event{CtrlSlash, 0, nil}
// section 3: (Alt)+Backspace2