浏览代码

Adds code lens to git revisions

main
Eric Amodio 7 年前
父节点
当前提交
4221fc3b10
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/gitCodeLensProvider.ts

+ 1
- 0
CHANGELOG.md 查看文件

@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Adds blame annotations, navigation & comparison commands, etc
- Adds support for files with staged changes
- Adds new entry in the `Repository View` of the `GitLens` view
- Adds Git code lens to Git file revisions (GitLens or vscode's)
## [6.3.0-beta] - 2017-11-27
### Added

+ 1
- 1
src/gitCodeLensProvider.ts 查看文件

@ -53,7 +53,7 @@ export class GitCodeLensProvider implements CodeLensProvider {
return this._onDidChangeCodeLenses.event;
}
static selector: DocumentSelector = { scheme: DocumentSchemes.File };
static selector: DocumentSelector = [{ scheme: DocumentSchemes.File }, { scheme: DocumentSchemes.Git }, { scheme: DocumentSchemes.GitLensGit }];
private _debug: boolean;

正在加载...
取消
保存