blob: 1ace370d8cd60733cea8f7baf4f613c699b769d9 [file] [log] [blame]
Wu, Zhenyu1492fe62024-04-10 22:52:40 +02001" Vim syntax file
2" Language: cgdbrc
3" Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
4" Documentation: https://cgdb.github.io/docs/Configuring-CGDB.html
5" Latest Revision: 2024-04-09
6
7if exists('b:current_syntax')
8 finish
9endif
10let b:current_syntax = 'cgdbrc'
11
12runtime! syntax/vim.vim
13
14syn region cgdbComment start="^\s*\#" skip="\\$" end="$" contains=@Spell
15
16highlight default link cgdbComment Comment