Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: reStructuredText Documentation Format |
| 3 | " Maintainer: Nikolai Weibull <source@pcppopper.org> |
| 4 | " URL: http://www.pcppopper.org/vim/ftplugin/pcp/rst/ |
| 5 | " Latest Revision: 2004-04-25 |
| 6 | " arch-tag: 618bf504-81ba-4518-bad2-43ba2b844a26 |
| 7 | |
| 8 | " Only do this when not done yet for this buffer |
| 9 | if exists("b:did_ftplugin") |
| 10 | finish |
| 11 | endif |
| 12 | |
| 13 | " Don't load another plugin for this buffer |
| 14 | let b:did_ftplugin = 1 |
| 15 | |
| 16 | let b:undo_ftplugin = "setl com< cms<" |
| 17 | |
| 18 | setlocal comments=fb:.. |
| 19 | setlocal commentstring=..\ %s |
| 20 | setlocal expandtab |
| 21 | setlocal sts=2 sw=2 |
| 22 | |
| 23 | " vim: set sts=2 sw=2: |