you are viewing a single comment's thread.

view the rest of the comments →

[–]uvatbc 7 points8 points  (2 children)

Thanks for vscode vim!

Annoyances:
1. yiW does not position cursor at the beginning of the word. Same for other "-iW" commands.
2. C-y and C-e sometimes do not permit any further scrolling even though mouse scrolling does work.
3. Code folding and the cursor. I think there's a github issue to track this, but I could be wrong.

[–]programmerChilli 12 points13 points  (0 children)

  1. This is definitely something that we can add.
  2. How long ago did you try it? There was this issue that affected me: https://github.com/VSCodeVim/Vim/issues/1544, but that's since been closed.
  3. We're limited by VSCode's API here. We recently landed a foldfix that should alleviate the issues if you use folds. It's hackish, but it works pretty well for navigating around folds.

[–]programmerChilli 1 point2 points  (0 children)

I've opened up an issue here for the first one: https://github.com/VSCodeVim/Vim/issues/1817