Browse Source

Fixes #1187 - adds missing escape in regexp

main
Andrii Dieiev 4 years ago
committed by Eric Amodio
parent
commit
51ee91e3ce
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(?!(\\+stashed|:status))/",
"group": "3_gitlens_explore@3"
},
{
"command": "gitlens.revealCommitInView",
"when": "viewItem =~ /gitlens:file\\b(?!(+stashed|:status))/",
"when": "viewItem =~ /gitlens:file\\b(?!(\\+stashed|:status))/",
"group": "3_gitlens_explore@4"
},
{

Loading…
Cancel
Save