Log erroneous keybindings

This commit is contained in:
Nicolai Søborg
2016-12-05 17:02:46 +01:00
committed by GitHub
parent ccff712d83
commit 128dc9fea1

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",