Skip to content

Commit cf65db6

Browse files
committed
update
1 parent 9f9e224 commit cf65db6

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

src/controller/LoginController.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class LoginContorller {
3131
title: "正在登录leetcode.com",
3232
matchOnDescription: false,
3333
matchOnDetail: false,
34-
placeHolder: "请选择登录方式",
34+
placeHolder: "请选择登录方式 正在登录leetcode.com",
3535
};
3636
if (getLeetCodeEndpoint() == Endpoint.LeetCodeCN) {
3737
picks.push({
@@ -40,6 +40,7 @@ class LoginContorller {
4040
value: "LeetCode",
4141
});
4242
qpOpiton.title = "正在登录中文版leetcode.cn";
43+
qpOpiton.placeHolder = "请选择登录方式 正在登录中文版leetcode.cn";
4344
}
4445
picks.push(
4546
{

src/controller/TreeViewController.ts

+12-12
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ class TreeViewController implements Disposable {
105105
}
106106
const picks: Array<IQuickItemEx<string>> = [];
107107
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+
// },
114114
{
115115
label: "$(pencil) Write directly...",
116116
description: "",
@@ -123,12 +123,12 @@ class TreeViewController implements Disposable {
123123
detail: "文件中的测试用例",
124124
value: ":file",
125125
},
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+
// },
132132
);
133133
const choice: IQuickItemEx<string> | undefined = await vscode.window.showQuickPick(picks);
134134
if (!choice) {

0 commit comments

Comments
 (0)