feat(vim): update selection mode to inclusive for NORMAL and VISUAL keybindings

This commit is contained in:
lulvz 2025-02-02 17:09:11 +00:00
parent 5269f2eff6
commit f9f57a6616

View file

@ -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": [
["<Esc>", "enter_mode", "normal"],
["k", "select_up"],