VSCodeVim's 100th release! We've come a long way :')
Not many changes in this one, but the changes we do have are some of the most requested changes we've ever had.
- Fixing our off by one error in visual mode. Due to the way that selections work, we used to select one less character in visual mode and implicitly have the cursor on the last character for visual mode. However, this caused a lot of mismatches with native VSCode behavior, namely
Add next occurrenceand copy pasting.
Wow!
Fixes #1705, #1160, #1455, #1590, #1719, #1755. @Chillee
PS: Note that this does introduce a bug related to add next occurrence. As we're simulating a cursor with a decoration and you can't stack decorations, if you have "editor.selectionHighlight": true, you will see this visual glitch when you first add the multiple cursors.
Fear not, since after you make any action (or if you set editor.selectionHighlight to false), it'll go back to normal.
- Allow
<c-d>/<c-u>to expand selection. #907 @Chillee - Fixed a bug with not escaping newlines properly #1861 @xconverge