通过插件命令替换 Eclipse 编辑器中选定的代码
如何通过插件替换 Eclipse 编辑器中选定的代码段(通过鼠标选择选择)并仅在 /* selected text */
中替换为相同的代码? 我已经设计了一个插件来在工具栏中创建一个按钮。 当我单击它时,我需要它来更改所选的文本并将其放入 /* */
中。
How do I replace the selected section of code (selected by mouse selection) in eclipse editor and replace it with the same code only in /* selected text */
through a plugin?
I have already designed a plugin to create a button in the toolbar. When I click it, I need it to change the text that is selected and put it into /* */
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个片段,它应该给你足够的提示来完成你的工作:
try this snippet, that should give you enough hints to do your job: