antfu / vscode-file-nesting-config

Config of File Nesting for VS Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use onStartupFinished to replace * in activationEvents

frg2089 opened this issue · comments

see document Activation Events | Visual Studio Code Extension API

onStartupFinished

This activation event is emitted and interested extensions will be activated some time after VS Code starts up. This is similar to the * activation event, but it will not slow down VS Code startup. Currently, this event is emitted after all the * activated extensions have finished activating.

...
"activationEvents": [
    "onStartupFinished"
]
...

"activationEvents": [
"*"
],

PR welcome!