blob: 46cf135c5c1910e7180d3ce5c30ceb632ee9c6e6 [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
6
7if exists('b:did_ftplugin')
8 finish
9endif
10let b:did_ftplugin = 1
11
12let s:save_cpoptions = &cpoptions
13set cpoptions&vim
14
15let b:undo_ftplugin = 'setl com< cms<'
16
17setlocal commentstring=#%s
18setlocal comments=:#
19
20let &cpoptions = s:save_cpoptions
21unlet s:save_cpoptions