Wu, Zhenyu | 1492fe6 | 2024-04-10 22:52:40 +0200 | [diff] [blame] | 1 | " 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 | |||||
7 | if exists('b:current_syntax') | ||||
8 | finish | ||||
9 | endif | ||||
10 | let b:current_syntax = 'cgdbrc' | ||||
11 | |||||
12 | runtime! syntax/vim.vim | ||||
13 | |||||
14 | syn region cgdbComment start="^\s*\#" skip="\\$" end="$" contains=@Spell | ||||
15 | |||||
16 | highlight default link cgdbComment Comment |