alefragnani / vscode-bookmarks

Bookmarks Extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=alefragnani.Bookmarks
GNU General Public License v3.0
1.7k stars 163 forks source link

switch to onStartupFinished #343

Closed jasonwilliams closed 3 years ago

jasonwilliams commented 3 years ago

from 1.46 onwards onStartupFinished can be used instead of * https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_46.md#onstartupfinished-activation-event https://code.visualstudio.com/api/references/activation-events#onStartupFinished

To ensure a great end user experience, please use * activation event in your extension only when no other activation events combination works in your use-case. onStartupFinished is similar to the * activation event, but it will not slow down VS Code startup.

This change can help with VSCode startup time.

alefragnani commented 3 years ago

Hi @jasonwilliams ,

I've noticed that announcement back then, and was planning to give it a try. Thank you for making it happen earlier 😄 .

It should be available on the next release.

Thank you