home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1B / DATAFILE_PDCD1B.iso / _gutenburg / gutenberg / etext90 / _stronged / modes / c < prev    next >
Text File  |  1994-08-14  |  1KB  |  62 lines

  1.  
  2. KeyList
  3.     ^⇧[        InsertStr("/*")
  4.     ^⇧]        InsertStr("*/")
  5. End
  6.  
  7. Functions
  8.  
  9.     Key    ⇧F2
  10.     Menu    List of functions ⇧F2
  11.     Icon    LoF
  12.     Select    ListOfC (All,,Sort)
  13.     Help    Click to generate list of all functions.
  14.  
  15.     Key     ⇧PgUp
  16.     Icon    up
  17.     Select    ListOfC (Text,GotoPrev)
  18.     Help    Click to go to previous function
  19.  
  20.     Key     ⇧PgDown
  21.     Icon    down
  22.     Select    ListOfC (Text,GotoNext)
  23.     Help    Click to go to next function
  24.  
  25.     Key    ^H
  26.     Menu    Load H.*
  27.     Icon    save
  28.     Help    Click to load the header file under cursor.
  29.     Select    LoadOne ("<tmp$path>.^.H.<tmp$word>","C:H.<tmp$word>")
  30.  
  31.     Key    F10
  32.     Menu    Save & Compile      F10
  33.     Icon    Run
  34.     Select    SaveDrag ("cc")
  35.     Help    Click to save text and send it to the c compiler.
  36.  
  37.     Key    ⇧^F10
  38.     Menu    Save & Make      ⇧^F10
  39.     Icon    brick
  40.     Select    SaveDClick ("<tmp$path>.^.Makefile")
  41.     Help    Click to save text and launch Make.
  42.  
  43.     Key    ^G 1
  44.     Menu    Goto function definition
  45.     Icon    goto
  46.     Select    SetMark(5) ListOfC (all,gotofound)
  47.     Help    Click to go to the definition of the function you're standing on.
  48.  
  49.     Key    ^G 2
  50.     ⇧Select    GotoMark(5)
  51.  
  52. End
  53.  
  54. Shortcuts
  55.     w(    while (\@) {\n\i  \@\n\i}
  56.     f(    for (\@;\@;\@) {\n\i  \@\n\i}
  57.     s(    switch (\@) {\n\i  case\n\i}
  58.     p(    printf("\@");
  59.     #<    #include <\@.h>
  60.     #"    #include "\@.h"
  61. End
  62.