在 Eclipse 中保存时运行外部应用程序
由于我们无法设置 Eclipse 的 RSE 以在远程编辑工具中使用,因此我安装了 齐声。 但是如何让 Eclipse 在每个文件保存时自动一致运行呢? 有没有可用的 eclipse 插件?
TIA
Since we cannot setup Eclipse's RSE to use at the tool for remote editing, I have installed Unison. But how can I get Eclipse to automatically run unison on every file save? Is there an eclipse plugin available for this?
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其设置为在每个构建上运行。 任何外部工具都可以在每个构建上运行,只需打开项目的首选项,转到构建器页面,单击“新建...”。
You can setup it to be run on every build. Any external tool can be run on every build, just open project's preferences, go to Builders page, click “New…”.
根据重要性,我会编写一个简单的插件来处理这个问题。
编辑:
您真正需要做的就是:
1) 使用 RCP\PDE Eclipse 安装从模板创建插件
2) 将以下代码添加到您的激活器...
Depending on the importance, I would write a simple plugin to handle this.
EDIT:
All you really need to do is this:
1) Create the plugin from the templates with the RCP\PDE Eclipse install
2) Add the following code to your activator...