String completion

Tab completion is enabled for all function names. If you type the first few letters of a function name, then type <TAB> the function name will be auto completed if it is un-ambiguous, or a list of possibilities will be given. Auto-completion works for the user object names as well as function names and even file names It does not work for for function arguments.

Example

  ASAP>scans = scantable('MyData.rpf')
  ASAP>scans.se<TAB>
  ASAP>scans.set_in<TAB>
scans.set_cursor      scans.set_freqframe   scans.set_selection
scans.set_doppler     scans.set_instrument  scans.set_unit
scans.set_fluxunit    scans.set_restfreqs

  ASAP>scans.set_instrument()



Malte Marquarding 2007-08-16