From 0666a87d15d9edd088f8fb9b77ca6219047ed012 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Thu, 24 Sep 2026 07:53:15 +0200 Subject: [PATCH] feat(client/server): watch .def files in the client file watcher --- client/src/common/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/common/server.ts b/client/src/common/server.ts index 3de053d..46d845b 100644 --- a/client/src/common/server.ts +++ b/client/src/common/server.ts @@ -91,7 +91,7 @@ async function createServer( } // Options to control the language client - const tclFileWatcher = workspace.createFileSystemWatcher("**/*.{tcl,psc}") + const tclFileWatcher = workspace.createFileSystemWatcher("**/*.{tcl,psc,def}") const clientOptions: LanguageClientOptions = { // Register the server for python documents documentSelector: isVirtualWorkspace()