Skip to content

Commit 4b515e5

Browse files
committed
fix: 优化网络搜索提示
1 parent 880a27e commit 4b515e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/apiTools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ export const searchTool: Tool = {
327327
required: ['query'],
328328
},
329329
function: async (args: { query: string }) => {
330-
vscode.window.showInformationMessage('CodeReDesign 正在搜索网络');
330+
vscode.window.showInformationMessage(`CodeReDesign 正在搜索网络 ${args.query}`);
331331
try {
332332
const links = await getLinksWithBrowser(args.query);
333333
if (!links.length) {

0 commit comments

Comments
 (0)