| 12345678910111213141516171819202122232425 |
- " Vim syntax file
- " Language: debugger variables window syntax file
- " Maintainer: <xdegaye at users dot sourceforge dot net>
- " Last Change: Oct 8 2007
- if exists("b:current_syntax")
- finish
- endif
- syn region dbgVarChged display contained matchgroup=dbgIgnore start="={\*}"ms=s+1 end="$"
- syn region dbgDeScoped display contained matchgroup=dbgIgnore start="={-}"ms=s+1 end="$"
- syn region dbgVarUnChged display contained matchgroup=dbgIgnore start="={=}"ms=s+1 end="$"
- syn match dbgItem display transparent "^.*$"
- \ contains=dbgVarUnChged,dbgDeScoped,dbgVarChged,dbgVarNum
- syn match dbgVarNum display contained "^\s*\d\+:"he=e-1
- high def link dbgVarChged Special
- high def link dbgDeScoped Comment
- high def link dbgVarNum Identifier
- high def link dbgIgnore Ignore
- let b:current_syntax = "dbgvar"
|