Show
Ignore:
Timestamp:
08/19/07 18:31:07 (15 months ago)
Author:
krobillard
Message:

Tokenizer handles special char!.
ur_toStrT() now thread-safe for char! values.
Fixed Vim char! syntax.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/thune/thread_safe/doc/thune.vim

    r451 r452  
    1818syn case ignore 
    1919 
    20 " As per current users documentation 
    2120if version < 600 
    22   set isk=@,48-57,?,!,.,',+,-,*,&,\|,=,_,~ 
     21  set iskeyword=@,48-57,?,!,.,+,-,*,&,\|,=,_,~ 
    2322else 
    24   setlocal isk=@,48-57,?,!,.,',+,-,*,&,\|,=,_,~ 
     23  setlocal iskeyword=@,48-57,?,!,.,+,-,*,&,\|,=,_,~ 
    2524endif 
    2625 
     
    8584" Tuples 
    8685syn match       thuneTuple      "\(\d\+\.\)\{2,}" 
    87  
    8886" Characters 
    89 syn region  thuneChar   oneline start="'" end="'" contains=thuneSpecialChar 
     87syn match   thuneChar   "'\^\=.'" 
     88"syn match   thuneChar   "'\S\+'" 
     89 
    9090syn match       thuneSpecialChar contained "\^[^[:space:][]" 
    9191syn match       thuneSpecialChar contained "%\d\+"