| 1 | " Vim filetype plugin for the V language. |
| 2 | |
| 3 | if exists('b:did_ftplugin') |
| 4 | finish |
| 5 | endif |
| 6 | let b:did_ftplugin = 1 |
| 7 | |
| 8 | setlocal commentstring=//\ %s |
| 9 | setlocal comments=s1:/*,mb:*,ex:*/,:// |
| 10 | setlocal suffixesadd=.v,.vsh |
| 11 | |
| 12 | let b:undo_ftplugin = 'setlocal commentstring< comments< suffixesadd<' |
| 13 | |