comparison runtime/ftplugin/markdown.vim @ 3224:8b8ef1fed009

Update runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Dec 2011 21:17:39 +0100
parents f7579a31705c
children 2eb30f341e8d
comparison
equal deleted inserted replaced
3223:576648218cb5 3224:8b8ef1fed009
1 " Vim filetype plugin 1 " Vim filetype plugin
2 " Language: Markdown 2 " Language: Markdown
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
4 " Last Change: 2010 May 21 4 " Last Change: 2011 Dec 14
5 5
6 if exists("b:did_ftplugin") 6 if exists("b:did_ftplugin")
7 finish 7 finish
8 endif 8 endif
9 9
12 12
13 setlocal comments=fb:*,fb:-,fb:+,n:> commentstring=>\ %s 13 setlocal comments=fb:*,fb:-,fb:+,n:> commentstring=>\ %s
14 setlocal formatoptions+=tcqln 14 setlocal formatoptions+=tcqln
15 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^[-*+]\\s\\+ 15 setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^[-*+]\\s\\+
16 16
17 let b:undo_ftplugin .= "|setl cms< com< fo<" 17 if exists('b:undo_ftplugin')
18 let b:undo_ftplugin .= "|setl cms< com< fo< flp<"
19 else
20 let b:undo_ftplugin = "setl cms< com< fo< flp<"
21 endif
18 22
19 " vim:set sw=2: 23 " vim:set sw=2: