mirror of
https://github.com/neovim/neovim.git
synced 2026-01-06 19:39:53 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
17 lines
445 B
VimL
17 lines
445 B
VimL
" Vim syntax file
|
|
" Language: cgdbrc
|
|
" Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> (invalid)
|
|
" 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
|