Eclipse 是否有像 Coda 那样的代码剪辑插件?
Coda中有一个非常有用的“Clips”功能,Eclipse有这样的功能吗?
它的作用非常简单,您保存一个经常使用的代码剪辑一次,并为其分配一个快捷方式,当您想重复使用时,您可以键入该快捷方式,它会自动粘贴它并将插入符号设置在定义的位置。
例如,当我输入 4dom
并按 TAB
时,它会输入以下内容:
jQuery(function($){
//puts cursor here
});
那么,如何在 Eclipse 中执行此操作?
There is a very useful "Clips" feature in Coda, does Eclipse have such feature?
What it does is pretty simple, you save a code clip once, which you use very often and assign it a shortcut and when you want to re-use you type the shortcut and it automatically pastes it and sets the caret at the defined position.
e.g. when I type 4dom
and press TAB
it types this:
jQuery(function($){
//puts cursor here
});
so, how do you do this in Eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Eclipse 中它们被称为模板。您可以在“窗口”->“首选项”然后“JavaScript/编辑器/模板”中找到它。
它将允许您创建或编辑。
In Eclipse they are called Templates. You can find this in Window->Preferences then JavaScript/Editor/Templates.
It will allow you to create or edit.
Eclipse 中类似的功能称为 Snippets。
通过执行以下操作找到它:
单击窗口>显示视图>其他>一般>片段
Similar function in Eclipse is called Snippets.
Find it by doing this:
click on Window > Show View > Other > General > Snippets