vjx<esc> behaves differently if you map the equivalent motions to a key #12012
-
With an empty
Then pressing
With the following [keys.normal]
j = ["select_mode", "move_visual_line_down", "extend_line_below", "normal_mode"] And the same initial file, and pressing
Pressing the keys by hand will select two lines, but binding the equivalent actions to a single key (I tested with different keys like helix version: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Once you've entered select mode the |
Beta Was this translation helpful? Give feedback.
Once you've entered select mode the
j
key is instead bound toextend_visual_line_down
instead ofmove_visual_line_down
. You should be able to bindj = ["extend_visual_line_down", "extend_line_below"]
instead.