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 29
29
" onLanguage:powershell"
30
30
],
31
31
"dependencies" : {
32
- "vscode-languageclient" : " 1.3.1" ,
33
- "figures" : " 2.0.0"
32
+ "vscode-languageclient" : " 1.3.1"
34
33
},
35
34
"devDependencies" : {
36
35
"vscode" : " ^1.0.0" ,
Original file line number Diff line number Diff line change 4
4
5
5
import vscode = require( "vscode" ) ;
6
6
import QuickPickItem = vscode . QuickPickItem ;
7
- const figures : any = require ( "figures" ) ;
8
7
9
8
export interface ICheckboxOption {
10
9
name : string ;
@@ -20,7 +19,7 @@ export class CheckboxQuickPick {
20
19
21
20
constructor ( options : ICheckboxOption [ ] ) {
22
21
this . options = options ;
23
- this . confirm = figures . tick ;
22
+ this . confirm = "$(check)" ;
24
23
this . checkboxOn = "[ x ]" ;
25
24
this . checkboxOff = "[ ]" ;
26
25
this . confirmPlaceHolder = "Select " + this . confirm + " to confirm" ;
You can’t perform that action at this time.
0 commit comments