Bladeren bron

Fixes #50 - add CodeLens excludes for html & vue files

main
Eric Amodio 7 jaren geleden
bovenliggende
commit
f6bde72baf
2 gewijzigde bestanden met toevoegingen van 14 en 3 verwijderingen
  1. +3
    -0
      CHANGELOG.md
  2. +11
    -3
      package.json

+ 3
- 0
CHANGELOG.md Bestand weergeven

@ -1,5 +1,8 @@
## Release Notes ## Release Notes
### 2.12.2
- Fixes [#50](https://github.com/eamodio/vscode-gitlens/issues/50) - excludes container-level CodeLens from `html` and `vue` language files
### 2.12.1 ### 2.12.1
- Adds `gitlens.advanced.codeLens.debug` setting to control whether or not to show debug information in CodeLens - Adds `gitlens.advanced.codeLens.debug` setting to control whether or not to show debug information in CodeLens
- Fixes issue where `gitlens.showQuickRepoHistory` command fails to open when there is no active editor - Fixes issue where `gitlens.showQuickRepoHistory` command fails to open when there is no active editor

+ 11
- 3
package.json Bestand weergeven

@ -1,6 +1,6 @@
{ {
"name": "gitlens", "name": "gitlens",
"version": "2.12.1",
"version": "2.12.2",
"author": { "author": {
"name": "Eric Amodio", "name": "Eric Amodio",
"email": "eamodio@gmail.com" "email": "eamodio@gmail.com"
@ -153,11 +153,19 @@
"type": "array", "type": "array",
"default": [ "default": [
{ {
"language": "css",
"location": "document"
},
{
"language": "html",
"location": "document"
},
{
"language": "json", "language": "json",
"location": "document" "location": "document"
}, },
{ {
"language": "css",
"language": "less",
"location": "document" "location": "document"
}, },
{ {
@ -165,7 +173,7 @@
"location": "document" "location": "document"
}, },
{ {
"language": "less",
"language": "vue",
"location": "document" "location": "document"
} }
], ],

Laden…
Annuleren
Opslaan