You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There can be multiple positions on same line to be bookmarked. It won't play well with the UI design so it should be configurable and not the default I guess.
Workaround before implemented (specific to 8.3.1):
If you are curious, why I need it. I implemented my own cursor undo because built in undo is useless. I want to jump around edit some things quickly and then jump back to where I was, but the built-in undo is reset any time you edit anything (there is no sticky engine). I keep undo and redo stacks as hidden bookmarks using this extension because of the sticky engine, so I don't need any of the ui features for this use case.
The text was updated successfully, but these errors were encountered:
Multiple bookmarks on the same line would break no only the UI, but some compatibilities that I'm planning for the future so, it's not that simple to accomplish and keep the extension with its original intention working properly.
Based on the description of your use case, it seems that what you really need is something like a Stack Bookmark, no matter the numbers in it. If that's the case, I wonder if those Vim extensions has something like this natively, but I think it worth a try. Or, it would be easier (less breaking changes) to achieve this on my other Bookmarks extension, since there would be no override of numbers per line (open issue alefragnani/vscode-bookmarks#183).
There can be multiple positions on same line to be bookmarked. It won't play well with the UI design so it should be configurable and not the default I guess.
Workaround before implemented (specific to 8.3.1):
If you are curious, why I need it. I implemented my own cursor undo because built in undo is useless. I want to jump around edit some things quickly and then jump back to where I was, but the built-in undo is reset any time you edit anything (there is no sticky engine). I keep undo and redo stacks as hidden bookmarks using this extension because of the sticky engine, so I don't need any of the ui features for this use case.
The text was updated successfully, but these errors were encountered: