使用热键转换选定的文本
我有这样的代码:
myVariable
我想将其更改为
trace("myVariable: " + myVariable);
使用像 alt - f12 这样的直接热键来执行此操作。 即不使用 ctrl - space 和箭头按钮。
在日食中可能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道是否可以为模板绑定热键。 实现类似行为的一种方法是使用正确的模板名称和“自动插入”。
也就是说,您可以编写 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)