From 95b976b6d4ecd19e39a61d4ff43c12a6bad7e8cc Mon Sep 17 00:00:00 2001 From: Jacek Laskowski Date: Thu, 24 Apr 2014 23:53:31 +0200 Subject: [PATCH] Detailed help for the reload command (following project's) --- main/src/main/scala/sbt/CommandStrings.scala | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/main/src/main/scala/sbt/CommandStrings.scala b/main/src/main/scala/sbt/CommandStrings.scala index aa2123b82..447d2a883 100644 --- a/main/src/main/scala/sbt/CommandStrings.scala +++ b/main/src/main/scala/sbt/CommandStrings.scala @@ -252,7 +252,18 @@ ProjectsCommand + """ def LoadProjectImpl = "loadp" def LoadProject = "reload" def LoadProjectBrief = (LoadProject, LoadProjectDetailed) - def LoadProjectDetailed = "(Re)loads the project in the current directory" + def LoadProjectDetailed = LoadProject + +s""" + +\t(Re)loads the project in the current directory. + +$LoadProject plugins + +\t(Re)loads the plugins project (under project directory). + +$LoadProject return + +\t(Re)loads the root project (and leaves the plugins project).""" def InitCommand = "initialize" def InitBrief = (InitCommand, "Initializes command processing.")