Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: Make |
| 3 | " Maintainer: Bram Moolenaar <Bram@vim.org> |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 4 | " Last Change: 2006 Jun 17 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5 | |
| 6 | " Only do this when not done yet for this buffer |
| 7 | if exists("b:did_ftplugin") |
| 8 | finish |
| 9 | endif |
| 10 | let b:did_ftplugin = 1 |
| 11 | |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 12 | let b:undo_ftplugin = "setl et< sts< fo< com< cms< inc<" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 13 | |
| 14 | " Make sure a hard tab is used, required for most make programs |
| 15 | setlocal noexpandtab softtabstop=0 |
| 16 | |
| 17 | " Set 'formatoptions' to break comment lines but not other lines, |
| 18 | " and insert the comment leader when hitting <CR> or using "o". |
| 19 | setlocal fo-=t fo+=croql |
| 20 | |
| 21 | " Set 'comments' to format dashed lists in comments |
| 22 | setlocal com=sO:#\ -,mO:#\ \ ,b:# |
| 23 | |
| 24 | " Set 'commentstring' to put the marker after a #. |
| 25 | setlocal commentstring=#\ %s |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 26 | |
| 27 | " Including files. |
| 28 | let &l:include = '^\s*include' |