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 6f887be commit c4f8cdeCopy full SHA for c4f8cde
client/src/languageserver.ts
@@ -203,7 +203,7 @@ export function activate(context: ExtensionContext) {
203
registerCustomCommands(context);
204
function didOpenTextDocument(document: TextDocument) {
205
// We are only interested in language mode text
206
- if (document.languageId !== 'lua' || (document.uri.scheme !== 'file' && document.uri.scheme !== 'untitled')) {
+ if (document.languageId !== 'lua') {
207
return;
208
}
209
0 commit comments