From 7a4dcae8c71a1f276b92cc817bbf5ed55abcca4f Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 21 Sep 2016 02:38:25 -0400 Subject: [PATCH] Fixes #7 - loading issue on Linux --- README.md | 4 ++++ package.json | 2 +- src/gitCodeLensProvider.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4ae68fb..4b4a4fb 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,10 @@ Must be using Git and it must be in your path. --- ## Release Notes +### 0.5.2 + + - Fixes loading issue on Linux + ### 0.5.1 - Adds blame information in the statusBar diff --git a/package.json b/package.json index e9fe537..20c328f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "0.5.1", + "version": "0.5.2", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com" diff --git a/src/gitCodeLensProvider.ts b/src/gitCodeLensProvider.ts index c40465f..b4b70d9 100644 --- a/src/gitCodeLensProvider.ts +++ b/src/gitCodeLensProvider.ts @@ -5,7 +5,7 @@ import {CodeLensCommand, CodeLensLocation, ICodeLensesConfig} from './configurat import GitProvider, {IGitBlame, IGitBlameLines, IGitCommit} from './gitProvider'; import * as moment from 'moment'; -const escapeRegExp = require('lodash.escapeRegExp'); +const escapeRegExp = require('lodash.escaperegexp'); export class GitRecentChangeCodeLens extends CodeLens { constructor(private git: GitProvider, public fileName: string, public symbolKind: SymbolKind, public blameRange: Range, range: Range) {