diff --git a/main/src/main/scala/sbt/nio/Watch.scala b/main/src/main/scala/sbt/nio/Watch.scala index 5431be199..0fe4873e1 100644 --- a/main/src/main/scala/sbt/nio/Watch.scala +++ b/main/src/main/scala/sbt/nio/Watch.scala @@ -493,6 +493,7 @@ object Watch { final val defaultInputOptions: Seq[Watch.InputOption] = Seq( Watch.InputOption("", "interrupt (exits sbt in batch mode)", CancelWatch, '\n', '\r'), Watch.InputOption(4.toChar, "", "interrupt (exits sbt in batch mode)", CancelWatch), + Watch.InputOption('l', "reload the build", Reload), Watch.InputOption('r', "re-run the command", Trigger), Watch.InputOption('s', "return to shell", Prompt), Watch.InputOption('q', "quit sbt", Run(TerminateAction)),