From cb977a5313f849bd3002d9d90860c0f32f063c51 Mon Sep 17 00:00:00 2001 From: Ay355 <77558710+Ay-355@users.noreply.github.com> Date: Fri, 8 Oct 2021 18:02:53 -0700 Subject: [PATCH] fix: use of left/right arrow keys in insert mode This allows the left and right arrows to move between lines in insert mode. --- lua/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/options.lua b/lua/core/options.lua index 96bdd4a..6633d33 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -45,7 +45,7 @@ opt.updatetime = options.updatetime -- go to previous/next line with h,l,left arrow and right arrow -- when cursor reaches end/beginning of line -opt.whichwrap:append "<>hl" +opt.whichwrap:append "<>[]hl" g.mapleader = options.mapleader