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
5
5
import com.github.ajalt.clikt.core.Context
6
6
import com.github.ajalt.clikt.core.subcommands
7
7
import com.github.ajalt.clikt.parameters.arguments.argument
8
+ import com.github.ajalt.clikt.parameters.arguments.help
8
9
import com.github.ajalt.clikt.parameters.arguments.multiple
9
10
import com.github.ajalt.clikt.parameters.options.flag
10
11
import com.github.ajalt.clikt.parameters.options.option
11
12
import processing.app.ui.Start
12
13
13
14
class 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" )
15
18
16
19
override fun help (context : Context ) = " Start the Processing IDE"
17
20
override val invokeWithoutSubcommand = true
You can’t perform that action at this time.
0 commit comments