We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f8898 commit 6e78a49Copy full SHA for 6e78a49
1 file changed
iframe/script/User_config/ACE_Config.js
@@ -56,7 +56,7 @@ function ACE_CodingForEDA(editor, edcode) {
56
for (const e of edcode) {
57
// 构建 snippet:方法参数提示
58
const paramPlaceholders = e.parameters.map((p, idx) => `\${${idx + 1}:${p.name}}`).join(', ');
59
- const snippet = '//' + e.description + '\n' + e.methodPath + '(' + paramPlaceholders + ')';
+ const snippet = e.methodPath + '(' + paramPlaceholders + ')';
60
// 按方法名注册
61
completers.push({
62
caption: e.methodPath,
0 commit comments