使用热键转换选定的文本

发布于 2024-07-08 14:23:11 字数 224 浏览 16 评论 0 原文

我有这样的代码:

myVariable

我想将其更改为

trace("myVariable: " + myVariable);

使用像 alt - f12 这样的直接热键来执行此操作。 即不使用 ctrl - space 和箭头按钮。

在日食中可能吗?

I have this code:

myVariable

which I want to change into

trace("myVariable: " + myVariable);

using a direct hotkey like alt - f12 to do it. I.e not using ctrl - space and arrow buttons.

is it possible in eclipse?

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

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

发布评论

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

评论(1

瞳孔里扚悲伤 2024-07-15 14:23:11

不知道是否可以为模板绑定热键。 实现类似行为的一种方法是使用正确的模板名称和“自动插入”。

也就是说,您可以编写 trcc (例如),Eclipse 会自动将其扩展为模板 trace ("${name}: " + ${name}); (最终您将编辑名称)。 缺点是您应该选择一个不会在代码中使用它的名称。 (所以如果你最终要为其他事情编写 trcc,你应该选择另一个名称)

关于模板, 关于它们的一个博客条目。 (如果您还不熟悉 ${enleading_type} 和 ${enending_method},请注意它们)

I don't know if it's possible to bind hotkeys for templates. One way for somewhat similar behavior could be using proper template name and "insert automatically"..

That is, you would write trcc (for example) and Eclipse would automatically expand it to a template trace("${name}: " + ${name}); (and you would end up editing the name). The drawback is that you should choose such a name that you won't use it otherwise in the code. (So if you would end up writing trcc for other things, you should choose another name)

Regarding to the templates, one blog entry on them. (Note the ${enclosing_type} and ${enclosing_method} if you're not familiar with them already)

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