@@ -40,21 +40,22 @@ private[repl] object ReplCommands:
4040 CommandDefinition (companion)
4141
4242 private val definitions = List (
43- command(Help , " print this summary" ),
44- command(Save , " save replayable session to a file" , " <path>" ),
45- command(Load , " interpret lines in a file" , " <path>" ),
46- command(Quit , " exit the interpreter" , aliases = List (Quit .alias)),
47- command(TypeOf , " evaluate the type of the given expression" , " <expression>" ),
48- command(DocOf , " print the documentation for the given expression" , " <expression>" ),
49- command(Imports , " show import history" ),
50- command(Reset , " clear the session and start fresh with the given compiler options" , " [options]" ),
51- command(Replay , " reset, then re-run the session with the given compiler options" , " [options]" ),
52- command(Settings , " update compiler options, if possible" , " <options>" ),
53- command(Silent , " disable/enable automatic printing of results" ),
54- command(JarCmd , " add a JAR to the classpath" , " <path>" ),
55- command(Dep , " resolve a dependency and make it available in the REPL" , " <group>::<artifact>:<version>" ),
56- command(ToolkitCmd , " resolve a toolkit and make it available in the REPL" , " <version>|default|<flavor>:<version>" ),
57- command(RepoCmd , " add repositories used to resolve dependencies" , " <url>|<alias>" ),
43+ command(Help , " print this summary" ),
44+ command(Save , " save replayable session to a file" , " <path>" ),
45+ command(Load , " interpret lines in a file" , " <path>" ),
46+ command(Quit , " exit the interpreter" , aliases = List (Quit .alias)),
47+ command(TypeOf , " evaluate the type of the given expression" , " <expression>" ),
48+ command(DocOf , " print the documentation for the given expression" , " <expression>" ),
49+ command(Imports , " show import history" ),
50+ command(Reset , " clear the session and start fresh with the given compiler options" , " [options]" ),
51+ command(Replay , " reset, then re-run the session with the given compiler options" , " [options]" ),
52+ command(Settings , " update compiler options, if possible" , " <options>" ),
53+ command(Silent , " disable/enable automatic printing of results" ),
54+ command(JarCmd , " add a JAR to the classpath" , " <path>" ),
55+ command(Dep , " resolve a dependency and make it available in the REPL" , " <group>::<artifact>:<version>" ),
56+ command(ResourceCmd , " add a resource file or directory to the classpath" , " <path>" ),
57+ command(ToolkitCmd , " resolve a toolkit and make it available in the REPL" , " <version>|default|<flavor>:<version>" ),
58+ command(RepoCmd , " add repositories used to resolve dependencies" , " <url>|<alias>" ),
5859 hidden(Sh ),
5960 hidden(KindOf ),
6061 hidden(Require ),
0 commit comments