Releases: jasonwilliams/vscode-helix
v0.6.2
v0.6.1
v0.6.0
- Adds support for sidebar toggle (ctrl+b)
- Fixes bug caused by match modes where the keys would lock up
- Fixes bug with Enable/Disable extension
- Supports auto complete in insert mode
- Supports "go to next change" in both compare and normal editor
- Clears selection on insert, fixes #14
- Fixes the bug with moving the left/right cursor causing highlighting of other occurances fixes #15
- Partial implementation of yank/paste (still buggy on paste above)
v0.5.7 - Web Support
The only change in this release is support for VS Code On The Web
v0.5.4
This release improves the search UX to match up more to how Helix search would work. It will re-focus the viewport on the first word that matches the search term. If you hit escape it will reposition back to where you started, it will also reposition back to where you started if you don't match anything.
Search is now also Smart Case by default
Indent and outdent are implemented
format selection is implemented
readme now has a link to the marketplace
v0.5.1
This release supports visual mode in "goto" and "view" modes.
It also adds counts to left and right movements.
There is also an indicator (NOR (V)
) so show when you're in visual mode.
v0.5.0
Match Mode
- surround_add
- surround_replace
- surround_delete
These match modes have been implemented with counts too, so you can run 2md"
to delete the outer surrounding quotes.
Insert Mode
- delete_word_backward
- delete_word_forward
- kill_to_line_start
- kill_to_line_end (ctrl+k couldn't be used due to conflicts)
- delete_char_backward
- delete_char_forward
Normal Mode
- repeat_last_motion (so you can call
tf
then usealt+.
to repeat thetf
motion)
v0.4.1
- Improved visual mode a bit more
- Brought back match mode when visual mode is active
- feat: You can now paste in search box
- feat: You can move lines up and down using alt+k, alt+j
- You can use addSelectionToNextMatch using alt+d
- Fixes #7
Full Changelog: v0.4.0...v0.4.1
v0.4.0
- Implements most of the unimpared functionality that is possible
- Fixed close other editors in window mode (was only closing other group before)
- Supports select next/previous paragraph
- Supports flipping the selection anchor/active (alt+;)
- Introduces counts for some operators such as gg, j/k
- Supports visual mode in some operators (which means it is broken for
mim
followed bymam
(this need to be fixed) - Fixed find character
- Fixes #2 (motions like wW can move across multi lines)
Full Changelog: v0.3.0...v0.4.0
v0.3.0
- Can now move up and down code actions modal
- Can now move up and down in the quick open panel
- Can now move up and down in suggestions panel
- Implements
search_selection
- Implements
delete
- implements
replace