File tree 2 files changed +14
-13
lines changed
2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class LoginContorller {
31
31
title : "正在登录leetcode.com" ,
32
32
matchOnDescription : false ,
33
33
matchOnDetail : false ,
34
- placeHolder : "请选择登录方式" ,
34
+ placeHolder : "请选择登录方式 正在登录leetcode.com " ,
35
35
} ;
36
36
if ( getLeetCodeEndpoint ( ) == Endpoint . LeetCodeCN ) {
37
37
picks . push ( {
@@ -40,6 +40,7 @@ class LoginContorller {
40
40
value : "LeetCode" ,
41
41
} ) ;
42
42
qpOpiton . title = "正在登录中文版leetcode.cn" ;
43
+ qpOpiton . placeHolder = "请选择登录方式 正在登录中文版leetcode.cn" ;
43
44
}
44
45
picks . push (
45
46
{
Original file line number Diff line number Diff line change @@ -105,12 +105,12 @@ class TreeViewController implements Disposable {
105
105
}
106
106
const picks : Array < IQuickItemEx < string > > = [ ] ;
107
107
picks . push (
108
- {
109
- label : "$(three-bars) Default test cases" ,
110
- description : "" ,
111
- detail : "默认用例" ,
112
- value : ":default" ,
113
- } ,
108
+ // {
109
+ // label: "$(three-bars) Default test cases",
110
+ // description: "",
111
+ // detail: "默认用例",
112
+ // value: ":default",
113
+ // },
114
114
{
115
115
label : "$(pencil) Write directly..." ,
116
116
description : "" ,
@@ -123,12 +123,12 @@ class TreeViewController implements Disposable {
123
123
detail : "文件中的测试用例" ,
124
124
value : ":file" ,
125
125
} ,
126
- {
127
- label : "All Default test cases..." ,
128
- description : "" ,
129
- detail : "所有的测试用例" ,
130
- value : ":alldefault" ,
131
- } ,
126
+ // {
127
+ // label: "All Default test cases...",
128
+ // description: "",
129
+ // detail: "所有的测试用例",
130
+ // value: ":alldefault",
131
+ // },
132
132
) ;
133
133
const choice : IQuickItemEx < string > | undefined = await vscode . window . showQuickPick ( picks ) ;
134
134
if ( ! choice ) {
You can’t perform that action at this time.
0 commit comments