From 5060c2cc1e56f84d91c63549d61d98ae574309e6 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 21 Jan 2021 00:41:51 -0500 Subject: [PATCH] Hides commands that should be when disabled --- package.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/package.json b/package.json index c570899..f3ca596 100644 --- a/package.json +++ b/package.json @@ -5066,6 +5066,10 @@ "when": "gitlens:enabled" }, { + "command": "gitlens.addAuthors", + "when": "gitlens:enabled" + }, + { "command": "gitlens.connectRemoteProvider", "when": "config.gitlens.integrations.enabled && gitlens:hasRichRemotes && !gitlens:hasConnectedRemotes" }, @@ -5142,6 +5146,10 @@ "when": "gitlens:activeFileStatus =~ /blameable/ && gitlens:activeFileStatus =~ /remotes/" }, { + "command": "gitlens.openFileFromRemote", + "when": "gitlens:enabled" + }, + { "command": "gitlens.openFileOnRemote", "when": "gitlens:activeFileStatus =~ /tracked/ && gitlens:activeFileStatus =~ /remotes/" },