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

Replace eof action with cancel (#289)

This commit is contained in:
Junegunn Choi
2015-07-23 21:05:33 +09:00
parent f9136cffe6
commit fdbf3d3fec
5 changed files with 19 additions and 14 deletions

View File

@@ -501,8 +501,8 @@ func parseKeymap(keymap map[int]actionType, execmap map[int]string, toggleSort b
keymap[key] = actDeleteCharEof
case "end-of-line":
keymap[key] = actEndOfLine
case "eof":
keymap[key] = actEof
case "cancel":
keymap[key] = actCancel
case "forward-char":
keymap[key] = actForwardChar
case "forward-word":