Browse Source

Updates regex to not be positional

main
Eric Amodio 4 years ago
parent
commit
5a397a5978
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      package.json

+ 2
- 2
package.json View File

@ -6816,12 +6816,12 @@
},
{
"command": "gitlens.showCommitInView",
"when": "viewItem =~ /gitlens:file\\b(?!(\\+stashed|:status))/",
"when": "viewItem =~ /gitlens:file\\b(?!.*?\\b(\\+stashed|:status)\\b)/",
"group": "3_gitlens_explore@3"
},
{
"command": "gitlens.revealCommitInView",
"when": "viewItem =~ /gitlens:file\\b(?!(\\+stashed|:status))/",
"when": "viewItem =~ /gitlens:file\\b(?!.*?\\b(\\+stashed|:status)\\b)/",
"group": "3_gitlens_explore@4"
},
{

Loading…
Cancel
Save