Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 2 and Version 3 of code/doc/ArgumentCompleter


Ignore:
Timestamp:
Apr 12, 2017, 10:31:46 PM (7 years ago)
Author:
landauf
Comment:

fixed links

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/ArgumentCompleter

    v2 v3  
    11= !ArgumentCompleter =
    2 [[TracNav(TracNav/TOC_Development)]]
    3 
    42
    53== Description ==
     
    1311''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.
    1412
    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.
     13The 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.
    1614
    1715== Examples ==