summaryrefslogtreecommitdiffstats
path: root/src/options.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.go')
-rw-r--r--src/options.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/options.go b/src/options.go
index 848ce3d9..fb432a6f 100644
--- a/src/options.go
+++ b/src/options.go
@@ -417,6 +417,14 @@ func parseKeyChords(str string, message string) map[int]string {
chord = tui.BSpace
case "ctrl-space":
chord = tui.CtrlSpace
+ case "ctrl-^", "ctrl-6":
+ chord = tui.CtrlCaret
+ case "ctrl-/", "ctrl-_":
+ chord = tui.CtrlSlash
+ case "ctrl-\\":
+ chord = tui.CtrlBackSlash
+ case "ctrl-]":
+ chord = tui.CtrlRightBracket
case "change":
chord = tui.Change
case "alt-enter", "alt-return":