The VSCodeVim team prioritizes issues based on reaction count.
Go to the end of a line and press the right arrow key (or l) in normal mode.
By default I don't expect the line wrapping to work but a config option to enable whichwrap style behavior would be great.
Automatically move up or down a line with arrow keys in normal mode, if configured.
are you referring to this?
@xconverge Really sorry I missed your comment, yes that is exactly what I'm looking for.
This issue was created when https://github.com/VSCodeVim/Vim/issues/839 was implemented.
This is a feature I miss from Vim and I personally find it really useful. Just stopping at the end of a line when using cursors just feels so alien.
I would like to tackle this an provide a pull request, if somebody could point me into the right direction. The original patchset is not linked in #839.
The workaround that I am using is to disable Vim extension鈥檚 handling of Left and Right keys when inside Insert Mode:
{ "key": "left", "command": "cursorLeft",
"when": "textInputFocus" },
{ "key": "right", "command": "cursorRight",
"when": "textInputFocus" },
{ "key": "left", "command": "extension.vim_left",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "right", "command": "extension.vim_right",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
Most helpful comment
are you referring to this?
http://vim.wikia.com/wiki/Automatically_wrap_left_and_right