neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

cgdbrc.vim (435B)


      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