tintinweb / vscode-inline-bookmarks

Customizable inline Bookmarks for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=tintinweb.vscode-inline-bookmarks
GNU General Public License v3.0
45 stars 14 forks source link

Jump to Bookmark commands are producing errors #38

Closed rkodey closed 3 years ago

rkodey commented 3 years ago

vscode 1.59.0

Error message: Running the contributed command: 'inlineBookmarks.jumpToNext' failed.

Hi! Running in the debugger, it looks like there are a few places where you're accessing the activeEditor selections array via private variable instead of using the getter. Recent versions of vscode have apparently removed access to the private vars, causing the error. Simply removing the underscore seems to resolve it.

I'll send a pull request for you shortly. Thanks!!