Bram Moolenaar | 01164a6 | 2017-11-02 22:58:42 +0100 | [diff] [blame] | 1 | " Vim filetype plugin file |
2 | " Language: gdb | ||||
3 | " Maintainer: Michaƫl Peeters <NOSPAMm.vim@noekeon.org> | ||||
4 | " Last Changed: 26 Oct 2017 | ||||
5 | |||||
6 | if exists("b:did_ftplugin") | finish | endif | ||||
7 | let b:did_ftplugin = 1 | ||||
8 | |||||
9 | setlocal commentstring=#%s | ||||
10 | |||||
11 | " Undo the stuff we changed. | ||||
12 | let b:undo_ftplugin = "setlocal cms<" |