Eclipse 中基于片段的代码补全
我想同时完成两项任务。
首先,从 .txt 文件中移动我的代码片段,并能够更好地标记它们/组织它们。
其次,为这些片段分配快捷方式,这些片段允许我输入 "p"
+ TAB
,这将呈现指定的片段(我不关心光标位置等)
I would like to accomplish two tasks at once.
First, to move my snippets of code from .txt files and be able to tag them/organize better.
Second, assign shortcuts to those snippets that will allow me to type "p"
+ TAB
which will render assigned snippet (I don't care of cursor position etc)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速导入 - 资源
您可以执行简短的 CTRL + SHIFT + R。这将使您能够显示项目目录中的任何类型的文件。
Snippets< /strong> - 模板
Eclipse 具有自动填充属性。您可以使用模板来增强它。有许多现成的模板,您甚至可以创建您的 拥有。
通过键入第一个字符并按 CTRL + 空格键来使用模板。
组织代码 - 格式化和格式化标签
如果您想更好地组织代码,您可以使用现有标签(例如 TODO)或创建自己的标签。使用它们对要导入到另一个项目的代码片段进行排序或确定优先级。
您可以使用 CTRL + SHIFT + F 重新格式化代码。
Quick Importing - resources
You can do a brief CTRL + SHIFT + R. This will enable you to display any kind of file from inside your projects directory.
Snippets - templates
Eclipse has auto fill property. You can enhance it using templates. There are many ready-to-use templates, and you can even create your own.
Templates are used by typing the first character and pressing CTRL + SPACE.
Organize code - formating & tags
If you want to organize you code even more, you can use existing tags like TODO or create your own tags. Use them to sort or prioritize the code snippets you want to import into another project.
You can use CTRL + SHIFT + F to reformat your code.