blob: 99f9702d26cafc8689bdf2e82f7e746f47434a95 [file] [log] [blame]
Wu, Zhenyu1492fe62024-04-10 22:52:40 +02001" Vim filetype plugin 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
Riley Bruins0a083062024-06-03 20:40:45 +02006" 2024-05-23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
Wu, Zhenyu1492fe62024-04-10 22:52:40 +02007
8if exists('b:did_ftplugin')
9 finish
10endif
11let b:did_ftplugin = 1
12
13let s:save_cpoptions = &cpoptions
14set cpoptions&vim
15
16let b:undo_ftplugin = 'setl com< cms<'
17
Riley Bruins0a083062024-06-03 20:40:45 +020018setlocal commentstring=#\ %s
Wu, Zhenyu1492fe62024-04-10 22:52:40 +020019setlocal comments=:#
20
21let &cpoptions = s:save_cpoptions
22unlet s:save_cpoptions