File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 44
55import vscode = require( "vscode" ) ;
66import QuickPickItem = vscode . QuickPickItem ;
7- const figures : any = require ( "figures" ) ;
87
98export 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" ;
You can’t perform that action at this time.
0 commit comments