neovim/runtime/syntax/cgdbrc.vim
zeertzjq 611cc7de43
vim-patch:9.1.0304: filetype: cgdb config file is not recognized (#28294)
Problem:  filetype: cgdb config file is not recognized
Solution: Detect cgdbrc files as cgdbrc filetype
          (Wu, Zhenyu)

closes: vim/vim#14458

1492fe6903

Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
2024-04-12 17:07:24 +08:00

17 lines
435 B
VimL

" 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