comparison runtime/ftplugin/markdown.vim @ 2202:f7579a31705c vim73

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Fri, 21 May 2010 12:05:36 +0200
parents
children 8b8ef1fed009
comparison
equal deleted inserted replaced
2201:4c6b4298852f 2202:f7579a31705c
1 " Vim filetype plugin
2 " Language: Markdown
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
4 " Last Change: 2010 May 21
5
6 if exists("b:did_ftplugin")
7 finish
8 endif
9
10 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim
11 unlet! b:did_ftplugin
12
13 setlocal comments=fb:*,fb:-,fb:+,n:> commentstring=>\ %s
14 setlocal formatoptions+=tcqln
15 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^[-*+]\\s\\+
16
17 let b:undo_ftplugin .= "|setl cms< com< fo<"
18
19 " vim:set sw=2: