AmVim For VSCode Versions Save

The Vim mode for Visual Studio Code(vscode) that works as expected.

1.37.0

2 months ago
  • Allow up/down arrows to navigate suggest widget in normal mode: #319 Thanks @notiv-nt!
  • Update dependencies and clean up the test infrastructure somewhat.
  • Add a 2ms delay to selection change recalculations to try reduce cursor placement issues with o and other commands #308 #317

1.36.0

1 year ago
  • Add new when clause context amVim.waitingForInput #303
    • Allows for binding h, j, k and l to native cursor movement.
  • Small improvements to mode change behavior to avoid unexpected cursor placement.
  • Add :shell and :split commands #314
    • Improve :wq command to behave more consistently when save fails.

1.35.0

1 year ago
  • Wrapped line support: #305 #306
    • Implements g^, g0, g$, gm, gk and gj.
    • Known issues include a slight flicker and occasional unexpected cursor placement.

1.34.0

2 years ago
  • Improve replace command r and add basic replace mode R #287
    • r command now supports a count
    • This early version of R replace mode keeps amVim.mode set to INSERT to preserve backwards compatibility with existing custom key bindings.
    • Known issues with replace mode: paste from OS clipboard and VS Code autocomplete still inserts instead of replaces
  • Fix behavior of next match n by nudging the cursor #289
    • / command has been modified to put the cursor at the start of the match like vim when amVim.mimicVimSearchBehavior is true (default)
    • n command now nudges the cursor forward to find the next match - this now makes it work the same as vim
  • Temporarily remove g? ROT13 command since it broke gg motions in visual mode #292

1.33.0

3 years ago
  • Support remote development mode with workspace execution location: #283 Thanks @imyelo!

1.32.0

3 years ago
  • Yank to and paste from system clipboard with amVim.useSystemClipboard option: #260 Thanks @karlhorky!
  • Add gd and gD go to definition motion: #258
  • Package with webpack for faster startup: #270 Thanks @tejanium!

1.31.0

3 years ago
  • Added g ? (ROT13) for visual and visual block modes. #235
  • Added zt to put cursor at top of the screen. #245
  • Added {N} ~ for normal mode. #234
  • Added go to percent in file motion %. #227
  • Added tag TextObject. #247
  • Dependency upgrades

1.30.0

5 years ago
  • Added amVim.mimicVimSearchBehavior configuration. #224

1.29.3

5 years ago
  • Fixed command 'search.action.focusActiveEditor' not found when searching. Thanks @marek2901. #223

1.29.2

5 years ago
  • Focus back to text when pressing enter at find widget. #218