From 9b6cc36983b9fe6f2aaed57d72e62d4d988cde01 Mon Sep 17 00:00:00 2001 From: Damjan Cvetko Date: Sat, 28 Dec 2024 11:49:34 +0100 Subject: [PATCH] Allow running on Windows but warn that it is experimental. --- src/extension.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index 85719f0..0913a75 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -61,8 +61,7 @@ export function deactivate(): Promise | undefined { function checkPlatform(): boolean { if (process.platform === 'win32') { - void vscode.window.showWarningMessage('Phpactor is not supported on Windows.') - return false + void vscode.window.showWarningMessage('Phpactor support on Windows is experimental.') } return true }