Changeset 185


Ignore:
Timestamp:
Dec 18, 2017, 1:32:41 PM (7 years ago)
Author:
Alfredo Fernández Díaz
Message:

New TRP highlight mode, addressing ticket #53:
Regular expressions 0[xX]?[0-9a-fA-F]+ and [0-9a-fA-F]+ don't find hex numbers that start with letters

M config/m_trp.fte

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/config/m_trp.fte

    r144 r185  
    1 # x86 instruction list now nearly complete, 
     1# x86 instruction list now nearly complete,
    22# also added floating point registers and some nasm directives
    33#                                   jsvendsen 07-24-2001
     4# did some real plumbing
     5#                                   mrwarper 2017-10-23
    46colorize TRP {
    57    SyntaxParser = 'SIMPLE';
    6    
     8
    79    color {
    810        { 'Normal',        'Editor_Default' },
     
    2527        'test', 'cmp',
    2628        'inc', 'dec',
    27         'popa', 'popaw', 'popf', 'popfw', 'popfd', 
     29        'popa', 'popaw', 'popf', 'popfw', 'popfd',
    2830        'pusha', 'pushad', 'pushaw', 'pushf', 'pushfd', 'pushfw',
    2931        'scasd', 'scasw', 'scasb',
     
    3133        'stosd', 'stosw', 'stosb',
    3234        'out', 'outsd', 'outsw', 'outsb',
    33         'in', 'insd', 'insw', 'insb', 
    34         'int', 'nop', 'rep', 'repz', 'repnz', 'repe', 'repne', 
     35        'in', 'insd', 'insw', 'insb',
     36        'int', 'nop', 'rep', 'repz', 'repnz', 'repe', 'repne',
    3537        'int1', 'icepb', 'int01', 'int3', 'into',
    3638        'cld', 'clc', 'cli', 'clts', 'stc',
     
    4951        'ficom', 'ficomp', 'fidiv', 'fidivr', 'fild', 'fist', 'fistp',
    5052        'fimul', 'fincstp', 'finit', 'fninit', 'fisub', 'fisubr',
    51         'fld', 'fld1', 'fldl2e', 'fldl2t', 'fldlg2', 'fldln2', 'fldpi', 
     53        'fld', 'fld1', 'fldl2e', 'fldl2t', 'fldlg2', 'fldln2', 'fldpi',
    5254        'fldz', 'fldcw', 'fldenv', 'fmul', 'fmulp', 'fnop', 'fpatan', 'fptan',
    5355        'fprem', 'fprem1', 'frndint', 'fsave', 'frstor', 'fscale',
     
    5557        'fstenv', 'fnstenv', 'fsub', 'fsubr', 'fsubp', 'fsubrp', 'ftst',
    5658        'fucom', 'fucomp', 'fucompp', 'fucomi', 'fucomip', 'fxam', 'fxch',
    57         'fxtract', 'fyl2x', 'fyl2xp1', 
     59        'fxtract', 'fyl2x', 'fyl2xp1',
    5860        'invd', 'invlpg', 'lahf', 'lar', 'lds', 'les', 'lfs', 'lgs', 'lss',
    5961        'lgdt', 'lidt', 'lldt', 'sgdt', 'sidt', 'sldt', 'lmsw', 'smsw',
     
    7173        'salc', 'shld', 'shrd', 'smi', 'stc', 'std', 'sti', 'str',
    7274        'umov', 'verr', 'verw', 'wait', 'wbinvd', 'wrmsr', 'xadd', 'xbts',
    73         'xchg', 'xlatb', 
     75        'xchg', 'xlatb',
    7476        'enter', 'leave',
    7577    };
     
    8890
    8991    keyword 'Editor_Keywords2' {
    90         'ffffffff',  'ffff',
    9192        'call', 'ret', 'retf', 'retn',
    9293        'iret', 'iretw', 'iretd',
     
    101102        'jcxz', 'jecxz',
    102103        'loop', 'loope', 'loopz', 'loopne', 'loopnz',
    103        
     104
    104105    };
    105106
    106107    keyword 'Editor_Keywords4' {
    107         'invalid',  'address', 'valid', 'process', 'PID', 'TID', 'priority', 
     108        'invalid',  'address', 'valid', 'process', 'PID', 'TID', 'priority',
    108109        'filename', 'cause', 'module', 'symbol', 'nearest', 'labels', 'thread',
    109110        'size', 'base', 'max', 'top', 'offset',
    110         'near', 'far', 'short', 'seg', 
     111        'near', 'far', 'short', 'seg',
    111112        'ptr', 'word', 'byte', 'dword', 'qword', 'dup',
    112113    };
    113    
     114
    114115    keyword 'Editor_Keywords5' {
    115116        'trap', 'stack', 'public', 'obj',
     
    128129    };
    129130
    130     h_state 0 { 'Normal' }   
    131     h_trans { 2, '-s', 'a-zA-Z_$@', 'Normal' }
    132     h_trans { 1, '-s', '0-9', 'Number' }
    133     h_trans { 0, 'S', 'a-zA-Z0-9_$@', 'Punctuation' }
     131    h_state 0 { 'Normal' }
     132    # Next two (not real punctuation) can be removed
     133    h_trans { 0, 'x', '[\-\.][\-\.]+', 'Normal' }
     134    h_trans { 0, '', ':\\', 'Normal' }
     135    h_trans { 0, 's', '-+([:])/.,>=', 'Punctuation' } # '-' is normally a range separator, so it must go first
     136    h_trans { 0, 'x', '0x[A-Fa-f0-9]+', 'Number' } # "i" flag does not quite work ?!
     137    h_trans { 1, '-x', '[A-Za-z0-9]*[G-Zg-z][A-Za-z0-9]*', 'Normal' }
     138    h_trans { 0, 'x', ' [a-f] ', 'Normal' } # Just a distraction
     139    h_trans { 0, 'x', '[A-Fa-f0-9]+', 'Number' }
    134140
    135     h_state 1 { 'Number' }
    136     h_trans { 0, '$', '', 'Normal' }
    137     h_trans { 0, 's', 'Xx', 'Number' }   
    138     h_trans { 0, '-x', /\W[0-9A-Fa-f]+\s/, 'Number' }
    139     h_trans { 0, 'S', '0-9A-Fa-f_$@', 'Punctuation' }
    140    
    141     h_state 2 { 'Normal' }
    142     h_trans { 0, '$', '', 'Normal' }
     141    h_state 1 { 'Normal' } # Just keyword highlight
    143142    h_wtype { 0, 0, 0, 'i', 'a-zA-Z0-9_$@' }
    144143}
     
    149148    Colorizer           = 'TRP';
    150149    AutoHilitParen      = 1;
    151    
     150
    152151    SaveFolds           = 2;      # save fold info at end of line
    153152}
Note: See TracChangeset for help on using the changeset viewer.