view runtime/ftplugin/gdb.vim @ 35171:76c328389c46 default tip

Added tag v9.1.0411 for changeset ed3a90cecb19f1d38b0a9bbb9bf6ed60bace72f4
author Christian Brabandt <cb@256bit.org>
date Sun, 12 May 2024 09:30:05 +0200
parents 6231e29aec3d
children
line wrap: on
line source

" Vim filetype plugin file
" Language:	gdb
" Maintainer:	Michaƫl Peeters <NOSPAMm.vim@noekeon.org>
" Last Changed: 2017-10-26
"               2024-04-10:	- add Matchit support (by Vim Project)

if exists("b:did_ftplugin") | finish | endif
let b:did_ftplugin = 1

setlocal commentstring=#%s
setlocal include=^\\s*source

" Undo the stuff we changed.
let b:undo_ftplugin = "setlocal cms< include<"

" Matchit support
if !exists('b:match_words')
  let b:match_words = '\<\%(if\|while\|define\|document\)\>:\<else\>:\<end\>'
  let b:undo_ftplugin ..= " | unlet! b:match_words"
endif