Eclipse 中选定单词的括号

发布于 2024-12-24 22:30:19 字数 274 浏览 2 评论 0原文

几天前,我觉得这个问题很愚蠢,所以没有将其发布在这里,但即使在搜索了很多之后,我也没有找到合适的解决方案。

对于那些使用过 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 技术交流群。

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

发布评论

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

评论(1

锦爱 2024-12-31 22:30:19

您可以使用自定义模板来做到这一点,例如,如果您想为 java 创建此模板,您可以执行以下操作:

Preferences ---> Java  ---> Templates

创建一个新模板并将其命名为 quote,然后将其键入为模式:

"${word_selection}"${cursor}

保存并应用。

之后,您可以使用该模板选择要引用的文本,然后按 CTRL + SPACE,然后选择引用。

括号也一样:

(${word_selection})${cursor}

You can do that with a custom template, so for example if you want to create this template for java, you can do :

Preferences ---> Java  ---> Templates

Create a new template and call it quote, then type this as pattern :

"${word_selection}"${cursor}

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 :

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