I noticed this message in the Output pane --
2023-04-02 11:47:05.073 [info] Extension 'genius257.autoit' uses a document selector without scheme. Learn more about this: https://go.microsoft.com/fwlink/?linkid=872305
After researching, it appears to be resolved by adding a scheme to this line --
|
const documentSelector: DocumentSelector | string = [{ language: 'au3' }]; |
Would adding scheme: 'file' here break anything?
I noticed this message in the Output pane --
2023-04-02 11:47:05.073 [info] Extension 'genius257.autoit' uses a document selector without scheme. Learn more about this: https://go.microsoft.com/fwlink/?linkid=872305After researching, it appears to be resolved by adding a scheme to this line --
vscode-autoit/client/src/main.ts
Line 21 in 918b9b4
Would adding
scheme: 'file'here break anything?