Selaa lähdekoodia

Updates to require vscode 1.19

main
Eric Amodio 7 vuotta sitten
vanhempi
commit
b89b0d86e9
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +1
    -1
      package.json
  2. +1
    -1
      src/activeEditorTracker.ts

+ 1
- 1
package.json Näytä tiedosto

@ -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 Näytä tiedosto

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

Ladataan…
Peruuta
Tallenna