summaryrefslogtreecommitdiffstats
path: root/src/options.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-06-16 02:18:49 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-06-16 02:18:49 +0900
commitd54a4fa223fa38415f272e7e937ccebefd39a388 (patch)
tree4a5bf56576387f796948e07decc6727cb579dd85 /src/options.go
parent45bd323cab0fc6c81ccf7f06521bc3d8cc3b9402 (diff)
Add key name "bspace" for --bind (bspace != ctrl-h)
Diffstat (limited to 'src/options.go')
-rw-r--r--src/options.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/options.go b/src/options.go
index 891ea1cc..425b19ef 100644
--- a/src/options.go
+++ b/src/options.go
@@ -293,6 +293,8 @@ func parseKeyChords(str string, message string, bind bool) []int {
chord = curses.CtrlM
case "space":
chord = curses.AltZ + int(' ')
+ case "bspace":
+ chord = curses.BSpace
case "tab":
chord = curses.Tab
case "btab":