Skip to content

Releases: jasonwilliams/vscode-helix

v0.6.2

16 Feb 18:02
Compare
Choose a tag to compare

v0.6.1

04 Feb 00:41
Compare
Choose a tag to compare
  • Fix insert after/before, this matches Helix more closely when entering insert mode via "i" or "a", semi related to #14
  • Handles uppercase/lowercase/switch case, fixes #17
  • Improve bracket matching when calling match functions with counts
  • Support increment and decrement

v0.6.0

29 Jan 23:34
Compare
Choose a tag to compare
  • 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

23 Jan 22:40
Compare
Choose a tag to compare

The only change in this release is support for VS Code On The Web

v0.5.4

17 Jan 22:32
Compare
Choose a tag to compare

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

15 Jan 22:34
Compare
Choose a tag to compare

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

15 Jan 10:16
Compare
Choose a tag to compare

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 use alt+. to repeat the tf motion)

v0.4.1

08 Jan 22:33
Compare
Choose a tag to compare
  • 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

07 Jan 16:42
Compare
Choose a tag to compare
  • 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 by mam (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

04 Jan 11:02
Compare
Choose a tag to compare
  • 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