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

Add support for ctrl-alt-[a-z] key chords

Close #906
This commit is contained in:
Junegunn Choi
2017-04-28 02:36:36 +09:00
parent d5e72bf55d
commit 6b592137b9
7 changed files with 52 additions and 39 deletions

View File

@@ -353,7 +353,7 @@ func escSequence() Event {
case C.ERR:
return Event{ESC, 0, nil}
case CtrlM:
return Event{AltEnter, 0, nil}
return Event{CtrlAltM, 0, nil}
case '/':
return Event{AltSlash, 0, nil}
case ' ':