diff options
| -rw-r--r-- | src/Main.hs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/Main.hs b/src/Main.hs index 61db22f..b7a5ebf 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -442,8 +442,8 @@ charToCode c = "\\x" ++ showIntAtBase 16 intToDigit (ord c) ""  dmap :: Keymap  dmap = -  [ ("\ESC", ChangeMode NormalMode) -  , ("d", DeleteEntireLine <> ChangeMode NormalMode) +  [ ("\ESC", ChangeMode NormalMode <> SetCount Nothing) +  , ("d", DeleteEntireLine <> ChangeMode NormalMode <> SetCount Nothing)    ] | 
