view runtime/syntax/cgdbrc.vim @ 35348:1f56105832f2 default tip

runtime(man): disable the q mapping Commit: https://github.com/vim/vim/commit/6dcd7f1a4d6d216798963edce9de69d03092433f Author: Christian Brabandt <cb@256bit.org> Date: Thu Jun 6 19:06:38 2024 +0200 runtime(man): disable the q mapping fixes: https://github.com/vim/vim/issues/8210 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 06 Jun 2024 19:30:03 +0200
parents af649de78695
children
line wrap: on
line source

" 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