From 4081e6b5af75b14b470361bd8aa456cc6032e3d6 Mon Sep 17 00:00:00 2001 From: Wenfang Du Date: Tue, 6 Dec 2022 14:02:15 +0800 Subject: [PATCH] fix: mac shortcuts conflict with the default `expandLineSelection` shortcut The current shortcuts conflict with: ```json { "key": "cmd+l", "command": "expandLineSelection", "when": "textInputFocus" } ``` --- package.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index a3ce0fcf..7d9d834e 100644 --- a/package.json +++ b/package.json @@ -54,14 +54,12 @@ { "command": "extension.liveServer.goOffline", "key": "alt+L alt+C", - "when": "editorTextFocus", - "mac": "cmd+L cmd+C" + "when": "editorTextFocus" }, { "command": "extension.liveServer.goOnline", "key": "alt+L alt+O", - "when": "editorTextFocus", - "mac": "cmd+L cmd+O" + "when": "editorTextFocus" } ], "menus": {