summaryrefslogtreecommitdiffstats
path: root/Main.hs
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2014-07-28 00:30:38 +0200
committertv <tv@shackspace.de>2014-07-28 00:30:38 +0200
commitbf0606b9f9b23477c7019f3364f55fddfcd53965 (patch)
tree2b036b85a2a0183e8949ef7244d95af58db22c1d /Main.hs
parent5e499515a72350c6a39eda6ae18f4b589097b91f (diff)
NormalMode <Escape> -> RingBell
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Main.hs b/Main.hs
index 72cc859..75af792 100644
--- a/Main.hs
+++ b/Main.hs
@@ -356,6 +356,7 @@ nmap =
, ("\x1b[C", MotionCommand $ GotoRight 1)
, ("\x1b[D", MotionCommand $ GotoLeft 1)
, ("\x0a", ExecuteInputBuffer <> ChangeMode InsertMode)
+ , ("\x1b", RingBell) -- TODO cancel any unfinished commands
]