From f6bde72bafa71cf1789ce0350f2af4839a073292 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 15 Mar 2017 15:54:11 -0400 Subject: [PATCH] Fixes #50 - add CodeLens excludes for html & vue files --- CHANGELOG.md | 3 +++ package.json | 14 +++++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2d7df0..f4dfbf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## 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 - 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 diff --git a/package.json b/package.json index 4f31e65..39d1f48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "2.12.1", + "version": "2.12.2", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com" @@ -153,11 +153,19 @@ "type": "array", "default": [ { + "language": "css", + "location": "document" + }, + { + "language": "html", + "location": "document" + }, + { "language": "json", "location": "document" }, { - "language": "css", + "language": "less", "location": "document" }, { @@ -165,7 +173,7 @@ "location": "document" }, { - "language": "less", + "language": "vue", "location": "document" } ],