Eclipse 中基于片段的代码补全

发布于 2024-08-12 05:01:05 字数 156 浏览 5 评论 0原文

我想同时完成两项任务。

首先,从 .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 技术交流群。

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

发布评论

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

评论(1

濫情▎り 2024-08-19 05:01:05

快速导入 - 资源

您可以执行简短的 CTRL + SHIFT + R。这将使您能够显示项目目录中的任何类型的文件。

  • 打开任何资源类型 * . *
  • 选择要打开的资源类型 ?
  • 要打开所有文本文件,请输入 *.txt

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.

  • To open any resource type * . *
  • To select resource to open type ?
  • To open all text files type *.txt

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文