Skip to content

Commit c4f8cde

Browse files
committed
active server in any lua
1 parent 6f887be commit c4f8cde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/languageserver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export function activate(context: ExtensionContext) {
203203
registerCustomCommands(context);
204204
function didOpenTextDocument(document: TextDocument) {
205205
// We are only interested in language mode text
206-
if (document.languageId !== 'lua' || (document.uri.scheme !== 'file' && document.uri.scheme !== 'untitled')) {
206+
if (document.languageId !== 'lua') {
207207
return;
208208
}
209209

0 commit comments

Comments
 (0)