sbt

Use the Scala Build Tool (sbt).

Anthony Sloane

9,117

3

Bug Reports

0.13.0

GPL-3.0

GitHub

This package consumes the following services:

An Atom interface to the Scala Build Tool (sbt).

This package provides support for interactive use of sbt within the Atom editor. It uses the PlatformIO IDE Terminal package to provide the terminal support and uses the linter package to annotate source code with error messages.

Author

inkytonik, Anthony Sloane (inkytonik@gmail.com)

Non-standard sbt prompts

If you have changed your sbt prompt from the default, you will probably need to set the "Prompt Pattern" setting to match your prompt. The package uses this pattern to spot the prompt when resuming interactive use after you interrupt a continuous execution command (e.g., ~compile) with another command. Commands you enter interactively are also detected by looking for lines that contain your prompt. Similarly, the busy signal support uses prompt matching to detect when commands are running. So if any of these features are not working correctly, please check your pormpt pattern.

Usage

Open the top-level directory of an sbt project in Atom. You can start an interactive sbt session within Atom using the "Sbt: Toggle Panel" command (alt-shift-O). This command will open a new terminal panel. sbt will run in the first project of the current Atom window.

You can also open a file in a project and then toggle the sbt panel, in which case the sbt session will be in the project that contains that file.

A single Atom window can contain more than one sbt panel where each one is running in a different project from that window.

By default, the sbt package assumes that you invoke sbt script as /usr/local/bin/sbt. Use the "sbt Script" setting to specify a different location.

Once you've created the terminal panel, you can interactively invoke sbt commands by typing into the panel. All interactive sbt commands should work, including cursor movement to access history and TAB to invoke completion.

The terminal panel shows each time you run a command so you can see what sbt prints. If you prefer not to see the sbt output automatically, turn off the "Show the sbt terminal automatically" setting.

The terminal title will be "sbt" and a description of the project. By default, the description is the basename of the main project path (e.g., "myproj" for a project path of "/foo/bar/myproj"). If you want to see the full project path, turn on the "Terminal title should show full project path" setting.

History

As well as supporting interactive use, the sbt package has Atom commands to make it easier to send sbt commands more than once. The simplest Atom command re-submits the most recent sbt command of the current project.

"Sbt: Run Last Command" (alt-shift-V): re-submit the most recent sbt command of the current project.

For more control over history, the sbt package creates a new Atom command each time you submit a command to sbt. E.g., suppose that the first command that you enter to sbt in project "mytool" is "test:compile". After you have interactively entered this command, you will find a new Atom command "Sbt: History 1 mytool test:compile". Thus, you can re-send sbt commands by using the Atom command palette to match on the count, the project name or the command text. Each sbt command entered will get an Atom history command with an incremented count.

If you don't want the history commands, you can turn off the "Create History Commands" package setting.

If you accumulate too much history and want to start again, use this command to start again:

"Sbt: Clear History": clear the history commands for the current sbt project.

Adding new commands

The sbt package also supports automatically adding Atom commands that send particular strings to sbt. The "Command List" package setting is a comma-separated list of sbt commands that you want to have quick access to. The default setting is "clean, compile, exit, run, test".

When first loaded, the sbt package will create one Atom command for each sbt command in the "Command List" setting. The Atom command has a name based on the sbt command. For example, if the sbt command is "test" then the Atom command will be sbt:test and it will appear in the command palette as "Sbt: Test". Thus, you can invoke the command via the palette, or more usefully, map a key to it.

Sbt commands have their names mangled when creating the Atom commands. Specifically, hyphens replace colons in Atom command names since colon has a special meaning to Atom. Spaces replace colons in the palette string for the command. E.g., if the sbt command is "test:compile" then the corresponding Atom command name will be sbt:test-compile and it will appear in the palette as "Sbt: Test Compile".

See the Key Bindings section of the package settings for the bindings that invoke the default sbt command list.

Error handling

If you issue an sbt command that compiles your code and it generates compiler errors, the sbt package should notice the errors and use the linter package to annotate your code with the messages in the right places.

If you have the linter package set to show linter information in the status bar, you should see something like "n issues" where n is the number of compiler errors.

If you have the linter set to show inline error tooltips and/or highlights for error lines in the editor gutter, you should see those for your errors too.

Most usefully, you should be able to use the "Linter: Next Error" Atom command (alt-shift-. or alt->) to cycle through the errors and to go to their locations in your code.

ScalaTest support

The sbt package also has support for telling the linter about the location of ScalaTest test failures, under some assumptions. It assumes that test failures look like this:

[info] MySuite in src/foo/bar:
[info] - something important works *** FAILED ***
[info]   99 was not equal to 100 (MyFile.scala:159)

MySuite is the name of the ScalaTest suite. src/foo/bar is the path of the suite relative to the top of the project. The test failed at line 159 of src/foo/bar/MyFile.scala. There may be other lines between the FAILED line and the final one.

This is the default output format produced by ScalaTest suites, except for one detail. ScalaTest does not report the suite path.

The sbt package needs the path so that it can map the failure to the correct file even if more than one file has that name. We assume that the suite and the file with the failing test live in the same directory.

If you want to use this facility you need to augment your suites so that their names include the path information. E.g., placing the following code in the suite will produce the output above, assuming that the file resides in the directory given by its package.

override def suiteName = {
    val pkgName = Option(getClass.getPackage).map(_.getName).getOrElse("")
    val path = s"src/${pkgName.replaceAllLiterally(".", "/")}"
    s"${super.suiteName} in $path"
}

We're aware that this solution is less than ideal. If we can convince the ScalaTest maintainers to include this implementation of suiteName by default, then we will. The situation is tricky so we are not confident. E.g., the file in which the failure occurs may not actually be in the same directory as the suite, which we assumed above. ScalaTest gets the filename from an exception stack trace but Java doesn't provide full paths to files in stack traces, so there is nothing ScalaTest can do.