summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/cgdbrc.vim
blob: 1ace370d8cd60733cea8f7baf4f613c699b769d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" Vim syntax file
" Language:             cgdbrc
" Maintainer:           Wu, Zhenyu <wuzhenyu@ustc.edu>
" Documentation:        https://cgdb.github.io/docs/Configuring-CGDB.html
" Latest Revision:      2024-04-09

if exists('b:current_syntax')
  finish
endif
let b:current_syntax = 'cgdbrc'

runtime! syntax/vim.vim

syn region cgdbComment		start="^\s*\#" skip="\\$" end="$" contains=@Spell

highlight default link cgdbComment Comment