home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / misc / stronged2 / stronged / !StrongED / Modes / C < prev    next >
Text File  |  1995-02-14  |  1KB  |  64 lines

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