Merge pull request #1 from f111fei/master

bug fixed Window.showQuickPick and then press ESC
This commit is contained in:
Greg Van Liew 2015-12-02 16:17:19 -08:00
Родитель 35771f29ea e7e29cd308
Коммит 47b92b4777
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -82,6 +82,9 @@ function textFunctions() {
items.push({ label: "ASCII Art", description: "Convert [hello] to ASCII Art" });
Window.showQuickPick(items).then((selection) => {
if (!selection) {
return;
}
let e = Window.activeTextEditor;
let d = e.document;
let sel = e.selections;