We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2765625 commit 42eca3fCopy full SHA for 42eca3f
src/extension.ts
@@ -93,7 +93,10 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
93
// Options to control the language client
94
const clientOptions: LanguageClientOptions = {
95
// Register the server for php documents
96
- documentSelector: ['php'],
+ documentSelector: [
97
+ { scheme: 'file', language: 'php' },
98
+ { scheme: 'untitled', language: 'php' }
99
+ ],
100
uriConverters: {
101
// VS Code by default %-encodes even the colon after the drive letter
102
// NodeJS handles it much better
0 commit comments