summaryrefslogtreecommitdiff
path: root/syntax/debugger_status.vim
blob: 3c15e87349915f5eae6fca851582b00827c70ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
" Vim syntax file
" Language: Vim Debugger Watch
" Maintainer: Jon Cairns
" Latest Revision: 2 August 2012

if exists('b:current_syntax')
  finish
endif

syn match debuggerStatusIdentifier '^Status:'
syn match debuggerStatusBreak '\s\zsbreak\ze'
syn match debuggerStatusStart '\s\zsrunning\ze'
syn match debuggerStatusStop '\s\zs\(stopped\|stopping\)\ze'
syn match debuggerStatusInfo '^\(Not\|Connected\|Listening\).*$'
syn region debuggerStatusHelp start='Press' end='information.'

hi def link debuggerStatusIdentifier Title
hi def link debuggerStatusStop Error
hi def link debuggerStatusBreak Special
hi def link debuggerStatusStart Constant
hi def link debuggerStatusInfo Type
hi def link debuggerStatusHelp Comment