From f9f57a66165a41cdea9ad7431b1c9783120b6c76 Mon Sep 17 00:00:00 2001 From: lulvz Date: Sun, 2 Feb 2025 17:09:11 +0000 Subject: [PATCH] feat(vim): update selection mode to inclusive for NORMAL and VISUAL keybindings --- src/keybind/builtin/vim.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/keybind/builtin/vim.json b/src/keybind/builtin/vim.json index 049a85e..4abf580 100644 --- a/src/keybind/builtin/vim.json +++ b/src/keybind/builtin/vim.json @@ -9,6 +9,7 @@ "name": "NORMAL", "line_numbers": "relative", "cursor": "block", + "selection": "inclusive", "press": [ ["b", "move_word_left_vim"], ["w", "move_word_right_vim"], @@ -73,6 +74,7 @@ "name": "VISUAL", "line_numbers": "relative", "cursor": "underline", + "selection": "inclusive", "press": [ ["", "enter_mode", "normal"], ["k", "select_up"],