Skip to content

Commit 5389d49

Browse files
author
Kapil Borle
committed
Replace figures.check with built-in icon
1 parent b3ba01f commit 5389d49

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@
2929
"onLanguage:powershell"
3030
],
3131
"dependencies": {
32-
"vscode-languageclient": "1.3.1",
33-
"figures": "2.0.0"
32+
"vscode-languageclient": "1.3.1"
3433
},
3534
"devDependencies": {
3635
"vscode": "^1.0.0",

src/checkboxQuickPick.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import vscode = require("vscode");
66
import QuickPickItem = vscode.QuickPickItem;
7-
const figures: any = require("figures");
87

98
export interface ICheckboxOption {
109
name: string;
@@ -20,7 +19,7 @@ export class CheckboxQuickPick {
2019

2120
constructor(options: ICheckboxOption[]) {
2221
this.options = options;
23-
this.confirm = figures.tick;
22+
this.confirm = "$(check)";
2423
this.checkboxOn = "[ x ]";
2524
this.checkboxOff = "[ ]";
2625
this.confirmPlaceHolder = "Select " + this.confirm + " to confirm";

0 commit comments

Comments
 (0)