Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.atnf.csiro.au/computing/software/asap/cookbook/node9.html
Дата изменения: Unknown
Дата индексирования: Tue Feb 5 05:49:22 2013
Кодировка:
String completion next up previous
Next: Leading Spaces Up: Interactive environment Previous: Interactive environment

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. It does not work for filenames, nor for function arguments.

Example

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



Malte Marquarding 2005-11-30