tmsh::builtin_help

Description

Presents the same results as typing a question mark (?) while entering a tmsh command. The system stores a set of possible completions and displays the possibilities when the procedure script::help returns. Note that this command has an effect only if the Tcl variable tmsh::csh is set to question mark (?).

Syntax

tmsh::builtin_help ["tmsh command" args...]

Examples

proc script::help { } {
 if { $tmsh::argc < 2 } {
   tmsh::add_help Options: config "Display configuration"
   tmsh::add_help Options: status \
       "Display status and statistics"
 }
 else {
  build''csh tmsh::builtin''help
 }
}