Lines Matching full:custom
19 - [Custom option processing](#custom-option-processing)
27 - [Custom help](#custom-help)
34 - [Custom event listeners](#custom-event-listeners)
204 ### Custom option processing
206 You may specify a function to do custom processing of option values. The callback function receives…
209 …oerce the option value to the desired type, or accumulate values, or do entirely custom processing.
251 $ custom -f 1e2
253 $ custom --integer 2
255 $ custom -v -v -v
257 $ custom -c a -c b -c c
259 $ custom --list x,y,z
265 …`.option` in format, taking flags and description, and optional default value or custom processing.
421 You can specify a custom name with the `executableFile` configuration option.
470 ### Custom help
472 You can display extra information by listening for "--help". ([example](./examples/custom-help))
482 console.log(' $ custom-help --help');
489 Usage: custom-help [options]
496 $ custom-help --help
527 …ation as a string for processing or displaying yourself. (The text does not include the custom help
549 ## Custom event listeners
551 You can execute custom actions by listening to command and option events.
645 …ubcommand (examples using [subclass](./examples/custom-command-class.js) and [function](./examples…
677 // custom processing...