如何为 Scala 项目配置 jEdit?
我希望能够使用 jEdit 来编写、编译和测试用 Scala 编写的项目。 我该如何配置它才能这样做?
I'd like to be able to use jEdit to write, compile and test projects written in Scala. How can I configure it to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
新链接似乎是 http://wiki.liftweb.net/index.php? title=SetUp_jEdit
The new link appears to be http://wiki.liftweb.net/index.php?title=SetUp_jEdit
可能是这个
JEdit Setup with Scala设置jEdit来开发Scala可以帮助您吗?(新更新的链接,如 David Vydra 在他的 答案)
它指的是JEdit 已完全配置以运行 Scala 项目。
http://wiki.liftweb.net/images/9/91/截图-jedit.png
May be this
JEdit Setup with Scalasetup jEdit to develop Scala can help you ?(new updated link, as mentioned by David Vydra in his answer)
It refers to a JEdit fully configured to run Scala projects.
http://wiki.liftweb.net/images/9/91/Screenshot-jedit.png
我实际上只是使用 jEdit 模式(我的 调整版本)就这样吧。 我所有的编译、shell 和 SCM 工作都是在单独的终端窗口中完成的。 很多时候,我会使用“项目查看器”来管理项目级别的事物,但这只是因为我懒得每次必须 Cmd+O 时都输入新路径。
jEdit + Buildr + JavaRebel(对于 shell)== 一个出色的工作流程。 我没有得到 Scala 插件提供的保存时编译行为,但没有它我也可以生活。 由于类型系统的复杂性,在保存时编译 Scala 无论如何都是很棘手的。
I literally just use the jEdit mode (my tweaked version) and leave it at that. All of my compilation, shell and SCM stuff is done in a separate Terminal window. Often times I will use "Project Viewer" to manage things at a project level, but that's just because I'm too lazy to type in a new path every time I have to Cmd+O.
jEdit + Buildr + JavaRebel (for the shell) == an excellent workflow. I don't get the compile-on-save behavior offered by the Scala Plugin, but I can live without that. Compiling Scala on save is tricky anyway due to the complexity of the type system.