summaryrefslogtreecommitdiffstats
path: root/src/Main.hs
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2014-08-01 14:39:59 +0200
committertv <tv@shackspace.de>2014-08-01 14:39:59 +0200
commitd5e36ef9466d29af784adf1bafcbb4d02df15aad (patch)
treecc373d6765c889b781b9a7dafd38f6ce0b7c99f7 /src/Main.hs
parentae7dc0431d3e89d1918d9c8b2caba9e1eb93b140 (diff)
nmap: don't reset count when changing to delete mode
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs
index f217310..ef56107 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -475,7 +475,7 @@ nmap =
, ("l", MotionCommand GotoRight <> SetCount Nothing)
, ("b", MotionCommand WordsBackward <> SetCount Nothing)
, ("w", MotionCommand WordsForward <> SetCount Nothing)
- , ("d", ChangeMode DeleteMode <> SetCount Nothing)
+ , ("d", ChangeMode DeleteMode)
, ("\"", ChangeMode SelectRegisterMode <> SetCount Nothing)
, ("\x1b[C", MotionCommand GotoRight <> SetCount Nothing)
, ("\x1b[D", MotionCommand GotoLeft <> SetCount Nothing)