如何为 JSDT 模板提案做出贡献

发布于 2024-10-23 19:59:55 字数 138 浏览 2 评论 0原文

我创建了一个扩展 JSDT 的 eclipse 插件。编辑 JavaScript 文件时,按 Ctrl-空格键会显示“默认建议”,其中包含一般 JavaScript 建议。再次按 Ctrl-空格键会显示“模板建议”,但列表为空。如何将内容添加到“模板提案”列表?

I've created an eclipse plugin which extends JSDT. When editing a JavaScript file, pressing Ctrl-Space shows "Default Proposals", consisting of general JavaScript Suggestions. Pressing Ctrl-Space again shows "Template Proposals", but the list is empty. How do I add content to the "Template Proposals" list?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最后的乘客 2024-10-30 19:59:55

您可以使用 org.eclipse.ui.editors.templates 扩展点来实现此目的。像这样的东西:

<extension
    point="org.eclipse.ui.editors.templates">
 <template
       autoinsert="true"
       contextTypeId="javaScript"
       description="Do something"
       id="com.foo.mytemplate"
       name="A silly template">
    <pattern>
fafdsds fafdsda fdadsa
    </pattern>
 </template>
</extension>

You can use the org.eclipse.ui.editors.templates extension point for this. Something like this:

<extension
    point="org.eclipse.ui.editors.templates">
 <template
       autoinsert="true"
       contextTypeId="javaScript"
       description="Do something"
       id="com.foo.mytemplate"
       name="A silly template">
    <pattern>
fafdsds fafdsda fdadsa
    </pattern>
 </template>
</extension>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文