Changes between Version 2 and Version 3 of code/doc/ArgumentCompleter
- Timestamp:
- Apr 12, 2017, 10:31:46 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/doc/ArgumentCompleter
v2 v3 1 1 = !ArgumentCompleter = 2 [[TracNav(TracNav/TOC_Development)]]3 4 2 5 3 == Description == … … 13 11 ''ac_function'' is one of the defined functions in [wiki:ArgumentCompletionFunctions]. If the given !ConsoleCommand is typed into the [wiki:Shell] and '''complete()''' is called in the [wiki:CommandExecutor], a list of the possible arguments is displayed in the Shell. 14 12 15 The returned list may depend on the already given set of arguments (including the currently typed argument). This allows to return, for example, all [wiki: HowTo/ConfigValue config-values] of a given class, where the classname is the first argument and the name of the config-value the second argument.13 The returned list may depend on the already given set of arguments (including the currently typed argument). This allows to return, for example, all [wiki:howto/ConfigValue config-values] of a given class, where the classname is the first argument and the name of the config-value the second argument. 16 14 17 15 == Examples ==