From 524fae8fb134843686ad05c21ef729ac40decc14 Mon Sep 17 00:00:00 2001 From: Shiva Poudel <3774827+shivapoudel@users.noreply.github.com> Date: Fri, 2 Feb 2024 03:06:37 +0545 Subject: [PATCH 1/2] Fix - Fullscreen keybinding conflict with F11 with activeViewlet --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 107e0641..42957703 100644 --- a/package.json +++ b/package.json @@ -576,12 +576,12 @@ { "command": "extension.php-debug.startWithStopOnEntry", "key": "F10", - "when": "!inDebugMode && debugConfigurationType == 'php'" + "when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'php'" }, { "command": "extension.php-debug.startWithStopOnEntry", "key": "F11", - "when": "!inDebugMode && debugConfigurationType == 'php'" + "when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'php'" } ] } From c2ad531a1d9e9a3924c2e369115a93571193f0f3 Mon Sep 17 00:00:00 2001 From: Damjan Cvetko Date: Sat, 13 Jul 2024 23:34:35 +0200 Subject: [PATCH 2/2] Remove activeViewlet case for F10 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42957703..5654354a 100644 --- a/package.json +++ b/package.json @@ -576,7 +576,7 @@ { "command": "extension.php-debug.startWithStopOnEntry", "key": "F10", - "when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'php'" + "when": "!inDebugMode && debugConfigurationType == 'php'" }, { "command": "extension.php-debug.startWithStopOnEntry",