From 81447bd3c0478d6577d697b398578068f53c31d7 Mon Sep 17 00:00:00 2001 From: Caleb Porzio Date: Wed, 12 Aug 2020 21:39:06 -0400 Subject: [PATCH] wip --- package.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 32c7118..9bb15b9 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "better-phpunit", "displayName": "Better PHPUnit", "description": "A better PHPUnit test runner", - "version": "1.5.2", + "version": "1.5.3", "publisher": "calebporzio", "engines": { "vscode": "^1.17.0" @@ -43,15 +43,18 @@ "keybindings": [ { "key": "cmd+k cmd+r", - "command": "better-phpunit.run" + "command": "better-phpunit.run", + "when": "editorLangId == php" }, { "key": "cmd+k cmd+f", - "command": "better-phpunit.run-file" + "command": "better-phpunit.run-file", + "when": "editorLangId == php" }, { "key": "cmd+k cmd+p", - "command": "better-phpunit.run-previous" + "command": "better-phpunit.run-previous", + "when": "editorLangId == php" } ], "configuration": {