File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,16 @@ import com.github.ajalt.clikt.command.main
55import com.github.ajalt.clikt.core.Context
66import com.github.ajalt.clikt.core.subcommands
77import com.github.ajalt.clikt.parameters.arguments.argument
8+ import com.github.ajalt.clikt.parameters.arguments.help
89import com.github.ajalt.clikt.parameters.arguments.multiple
910import com.github.ajalt.clikt.parameters.options.flag
1011import com.github.ajalt.clikt.parameters.options.option
1112import processing.app.ui.Start
1213
1314class Processing : SuspendingCliktCommand (" processing" ){
14- val sketches by argument().multiple(default = emptyList())
15+ val sketches by argument()
16+ .multiple(default = emptyList())
17+ .help(" Sketches to open" )
1518
1619 override fun help (context : Context ) = " Start the Processing IDE"
1720 override val invokeWithoutSubcommand = true
You can’t perform that action at this time.
0 commit comments