ソースを参照

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);
}

読み込み中…
キャンセル
保存