Merge pull request #474 from NicolaiSoeborg/patch-1

Log erroneous keybindings
This commit is contained in:
Zachary Yedidia 2016-12-05 15:01:50 -05:00 committed by GitHub
commit d00b9f3b7a

View file

@ -340,6 +340,7 @@ func findAction(v string) (action func(*View, bool) bool) {
func BindKey(k, v string) {
key, ok := findKey(k)
if !ok {
TermMessage("Unknown keybinding: " + k)
return
}
if v == "ToggleHelp" {
@ -381,7 +382,6 @@ func DefaultBindings() map[string]string {
"CtrlShiftUp": "SelectToStart",
"CtrlShiftDown": "SelectToEnd",
"Enter": "InsertNewline",
"Space": "InsertSpace",
"CtrlH": "Backspace",
"Backspace": "Backspace",
"Alt-CtrlH": "DeleteWordLeft",