소스 검색

Updates to require vscode 1.19

main
Eric Amodio 7 년 전
부모
커밋
b89b0d86e9
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      package.json
  2. +1
    -1
      src/activeEditorTracker.ts

+ 1
- 1
package.json 파일 보기

@ -7,7 +7,7 @@
},
"publisher": "eamodio",
"engines": {
"vscode": "^1.18.0"
"vscode": "^1.19.0"
},
"license": "SEE LICENSE IN LICENSE",
"displayName": "Git Lens \u2014 git blame annotations, code lens, and more",

+ 1
- 1
src/activeEditorTracker.ts 파일 보기

@ -12,7 +12,7 @@ export class ActiveEditorTracker extends Disposable {
constructor() {
super(() => this.dispose());
const fn = Functions.debounce((e: TextEditor) => this._resolver && this._resolver(e), 50);
const fn = Functions.debounce((e: TextEditor | undefined) => this._resolver && this._resolver(e), 50);
this._disposable = window.onDidChangeActiveTextEditor(fn);
}

불러오는 중...
취소
저장