diff options
author | tv <tv@shackspace.de> | 2014-07-28 00:29:39 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2014-07-28 00:30:00 +0200 |
commit | 5e499515a72350c6a39eda6ae18f4b589097b91f (patch) | |
tree | c14f3bd2aa0f805012706db875fd529f037bed45 | |
parent | d59175ab186d2c8d63ae75d4a13cad91a1933c4d (diff) |
move cursor with <Left> and <Right> in NormalMode
-rw-r--r-- | Main.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -353,6 +353,8 @@ nmap = , ("l", MotionCommand $ GotoRight 1) , ("b", MotionCommand $ WordsBackward 1) , ("w", MotionCommand $ WordsForward 1) + , ("\x1b[C", MotionCommand $ GotoRight 1) + , ("\x1b[D", MotionCommand $ GotoLeft 1) , ("\x0a", ExecuteInputBuffer <> ChangeMode InsertMode) ] |