All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Initial release
New group system when we have more matches than the alphabet can have (26) details
using SVG instead of TEXT for the decorations, this means a HUGE performance boost
thanks to ncthis we now are able to make ace jump placeholders only for a "range" where the cursor is, instead of full page. Genius workaround until vscode releases the APIs for getting only viewable area of the screen.
placeholder now have more configurations, such has font size, family, etc added ', " and < in the pattern
- Added new command that let Ace Jump details
- Correctly disposing the
AceJump: Type
andAceJump: Jump To messages
- possibility to search inside words using the new setting
aceJump.finder.onlyInitialLetter=false
- possibility to skip the search on the selections using the new setting
aceJump.finder.skipSelection=true
- Resolve non-intuitive behavior when search query matches separator regex details
- Fixed "AceJump: Jump To" message always in status bar #18 details
- Now the icon does not move the charaters in vscode anymore #23 details
- Now uses a new vscode api for detecing the visible ranges in the screen details
- Now should work together with extensions using the TYPE command (like VIM extensions) thanks to matklad
- Total refactor of the code
- added a new command that support multichar info
- if while restricting we don't match a letter but we match a placeholder we jump directly for it
- dimming the editor when we start to ace jump, can be disabled with
aceJump.dim.enabled
- reduced bundle size with webpack
- fixes bug
- fixes bug
- changed way to render highlights in the multichar and removed the limitation of 10
- now it uses full power of vscode api for multiple visible areas, for example when we collapse functions or classes
- updated readme, thanks to pr
- audited node packages for security
- when set to "only initial letter", first word of each line now works even with tabs indentation, issue
- audited node packages for security
- when using "selection mode", correctly selects also last character, issue
- implemented #162
- fixed #196
- fixed #228