Skip to content

Commit

Permalink
Added syntax highlighting for breakpoint window
Browse files Browse the repository at this point in the history
  • Loading branch information
joonty committed Aug 8, 2012
1 parent 1eaa9af commit 8bc15c4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions syntax/debugger_breakpoint.vim
@@ -0,0 +1,19 @@
" Vim syntax file
" Language: Vim Debugger Watch Window
" Maintainer: Jon Cairns
" Latest Revision: 2 August 2012

if exists("b:current_syntax")
finish
endif

syn region debuggerBreakpointHeader start=+^=+ end=+=$+
syn match debuggerBreakpointDivider '|'
syn match debuggerBreakpointTitle '[A-Z]\{2,}'
syn match debuggerBreakpointId '\s\d\{5,}\s'


hi def link debuggerBreakpointHeader Type
hi def link debuggerBreakpointDivider Type
hi def link debuggerBreakpointTitle Title
hi def link debuggerBreakpointId Number

0 comments on commit 8bc15c4

Please sign in to comment.