Releases: aioutecism/amVim-for-VSCode
Releases · aioutecism/amVim-for-VSCode
1.37.0
- 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
- 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
- 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
- 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
- Support remote development mode with workspace execution location: #283 Thanks @imyelo!
1.32.0
- 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
- 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
- Added
amVim.mimicVimSearchBehavior
configuration. #224
1.29.3
- Fixed
command 'search.action.focusActiveEditor' not found
when searching. Thanks @marek2901. #223
1.29.2
- Focus back to text when pressing enter at find widget. #218