Kui API Documentation - v11.0.0 / @kui-shell/core / Arguments
@kui-shell/core.Arguments
The full set of data passed to a command handler
Name | Type |
---|---|
Options |
ParsedOptions |
-
CommandLine
<Options
>↳
Arguments
- REPL
- argv
- argvNoOptions
- block
- command
- createErrorStream
- createOutputStream
- execOptions
- nextBlock
- parsedOptions
- pipeStages
- tab
• REPL: REPL
packages/core/src/models/command.ts:180
• argv: string
[]
the result of a whitespace split applied to the command
string
that pays attention to backslash escaping and quotations
packages/core/src/models/command.ts:146
• argvNoOptions: string
[]
the residual of argv
without parsedOptions
packages/core/src/models/command.ts:151
• block: boolean
| Block
EXPERT MODE: The REPL block in which this command was initiated (rarely used, but useful for more complex UI extensions)
packages/core/src/models/command.ts:204
• command: string
the raw command string, as given by the user
packages/core/src/models/command.ts:141
• createErrorStream: StreamableFactory
Same as createOutputStream, but for stderr
packages/core/src/models/command.ts:198
• createOutputStream: StreamableFactory
Commands can use this to stream output to the UI, rather than using the normal request-response interaction between the REPL and the command.
packages/core/src/models/command.ts:193
• execOptions: ExecOptions
Optional command channel options that one command can use to influence the execution of another.
packages/core/src/models/command.ts:186
• nextBlock: HTMLElement
EXPERT MODE: The REPL block that will house the subsequent command execution (rarely used, but useful for more complex UI extensions)
packages/core/src/models/command.ts:211
• parsedOptions: Options
the dash options parsed out in a way that pays attention to n-ary
options such as --option key value
packages/core/src/models/command.ts:167
• pipeStages: Object
pipeline stages, e.g. if command='a b --foo|c', the pipeStages=[['a','b, '--foo'],'c']
Name | Type |
---|---|
prefix? |
string |
redirect? |
string |
redirector? |
">" | ">>" | "2>&1" | ">&" | ">>&" |
stages |
string [][] |
packages/core/src/models/command.ts:156
• tab: Tab
The tab context in which the command was initiated