You want !!. To see the help for sbt, type help at the prompt:
> help
help Displays this help message or prints detailed help on requested commands (run 'help <command>').
about Displays basic information about sbt and the build.
reload (Re)loads the project in the current directory
settings Lists the settings defined for the current project.
tasks Lists the tasks defined for the current project.
projects Lists the names of available projects or temporarily adds/removes extra builds to the session.
project Displays the current project or changes to the provided `project`.
set Evaluates a Setting and applies it to the current project.
session Manipulates session settings. For details, run 'help session'.
inspect Prints the value for 'key', the defining scope, delegates, related definitions, and dependencies.
; <command> (; <command>)* Runs the provided semicolon-separated commands.
~ <command> Executes the specified command whenever source files change.
last Displays output from a previous command or the output from a specific task.
last-grep Shows lines from the last output for 'key' that match 'pattern'.
exit Terminates the build.
show <key> Displays the result of evaluating the setting or task associated with 'key'.
More command help available using 'help <command>' for:
!, -, <, alias, append, apply, eval, iflast, reboot, shell
and then to get help on !:
> !
History commands:
!! Execute the last command again
!: Show all previous commands
!:n Show the last n commands
!n Execute the command with index n, as shown by the !: command
!-n Execute the nth command before this one
!string Execute the most recent command starting with 'string'
!?string Execute the most recent command containing 'string'
~test-only my.long.package.etc.class.namewhich will re-run the test after I make adjustments and save. – 0__ Oct 5 '12 at 18:15