home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / fte0827.zip / config / m_fte.fte < prev    next >
Text File  |  1999-05-16  |  1KB  |  37 lines

  1. colorize FTE {
  2.     SyntaxParser        = 'FTE';
  3.  
  4.     color {
  5.         { 'Normal',      'Editor_Default' },
  6.         { 'Number',      'Lang_DecimalNumber' },
  7.         { 'String',      'Lang_String' },
  8.         { 'Comment',     'Lang_Comment' },
  9.         { 'Regexp',      'Lang_Regexp' },
  10.         { 'Punctuation', 'Lang_Punctuation' },
  11.         { 'Command',     'Lang_Command' },
  12.         { 'CPreprocessor', 'Lang_Preprocessor' },
  13.     };
  14.  
  15.     keyword 'Editor_Keywords' {
  16.         'mode', 'object', 'key', 'keyword', 'color', 'menu', 'submenu', 'item',
  17.         'extern', 'include', 'sub', 'eventmap', 'abbrev', 'colorize',
  18.         'h_state', 'h_trans', 'h_words', 'h_wtype', 'submenucond',
  19.         'color_palette',
  20.     };
  21. }
  22.  
  23. mode FTE: PLAIN {
  24.     FileNameRx          = /\.\cfte$/;
  25.     HilitOn             = 1;
  26.     Colorizer           = 'FTE';
  27.     IndentMode          = 'C';
  28.     MultiLineHilit      = 1;
  29.     AutoHilitParen      = 1;
  30.     
  31.     SaveFolds           = 2;      # save fold info at end of line
  32.     CommentStart        = ' #';
  33.     CommentEnd          = '';
  34.  
  35.     RoutineRegexp       = /^{mode}|{sub}|{menu}|{object}|{eventmap}|{colorize} /;
  36. }
  37.