How to open SBT Tool Window in Intellij?

2019-02-05 12:39发布

This question may sound silly for you, but I have been searching the Internet for a while and couldn't find the answer. How can I open SBT Tool Window in Intellij (scala and SBT plugins obviously installed)?

5条回答
戒情不戒烟
2楼-- · 2019-02-05 12:50

In Intellij 16 SBT Console menu item no longer exists and in Debian 7 (XFCE) Alt-F12 doesn't work.

To run SBT console:

  1. select View -> Tool Windows -> Terminal (for Alt-F12)
  2. type sbt and console works
查看更多
虎瘦雄心在
3楼-- · 2019-02-05 12:52

In IntelliJ 2017.1, an sbt shell is integrated with the Scala plugin. You can open it from an icon on the sbt project view toolwindow, or from the "Tools" menu enter image description here

查看更多
劳资没心,怎么记你
4楼-- · 2019-02-05 12:54

To be able to open SBT Console from View -> Tool Windows you first need to install the plugin required for it.

You can find the SBT plugin by searching for it under Settings -> Plugins -> Browse repositories

Plugin homepage: https://github.com/orfjackal/idea-sbt-plugin

查看更多
Fickle 薄情
5楼-- · 2019-02-05 12:55

In Menu: View -> Tool Windows there should be two entries:

  1. SBT
  2. SBT Console

The first you can use to refresh IDEA project structure from SBT and view dependencies.

The second gives you a console where you can run sbt commands.

Update:

As Justin already aded:

As of IntelliJ IDEA 2017.1 Build #IC-171.3780.52 there is a new and (imho) better way:

(If you are working with an SBT project, that is)

When you open the SBT Tool Window, you will find a new scala terminal icon:

enter image description here


This will open an sbt console session with your sbt project import settings.

One major benefit is that you will actually (finally) get links to your code lines for compiler warnings and errors.

查看更多
时光不老,我们不散
6楼-- · 2019-02-05 12:59

You can either use above or simply use Alt+F12

查看更多
登录 后发表回答