Eclipse 中选定单词的括号
几天前,我觉得这个问题很愚蠢,所以没有将其发布在这里,但即使在搜索了很多之后,我也没有找到合适的解决方案。
对于那些使用过 TextEdit(在 Mac 上)的人来说,他们会完全知道我在说什么。
在编码时,我只想在单词或一行上加上引号或括号。为此,我必须返回到单词的开头,打开引号,然后转到单词的结尾并将其关闭。
Eclipse 中是否有一个插件,我可以用引号或括号将当前选择括起来?我不是在谈论快速修复(Ctrl + 1)。它可用于非常复杂的模板。
A few days back I felt this question to be dumb and dint post it here, but after even after searching a lot I dint find a proper solution.
For those of you who used TextEdit (on Mac), they will perfectly know what I am talking about.
While coding I just want to put quotes or parentheses over a word or a line.To do this I'll have to move back to the starting of the word, open the quote and then go to the ending of the word and close it.
Is there a plugin or so in eclipse where I can just surround the current selection with quotes or parenthesis ?? I am not talking about quick fix (Ctrl + 1). It can be used for much complex templates.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用自定义模板来做到这一点,例如,如果您想为 java 创建此模板,您可以执行以下操作:
创建一个新模板并将其命名为 quote,然后将其键入为模式:
保存并应用。
之后,您可以使用该模板选择要引用的文本,然后按 CTRL + SPACE,然后选择引用。
括号也一样:
You can do that with a custom template, so for example if you want to create this template for java, you can do :
Create a new template and call it quote, then type this as pattern :
Save it and Apply.
After that you can use that template selecting the text you want to quote then press CTRL + SPACE and then chose quote.
Same thing for parenthesis :