" Vim syntax file " Language: debugger variables window syntax file " Maintainer: " 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"