Your message dated Wed, 29 May 2013 21:53:23 -0400
with message-id <[email protected]>
has caused the report #672597,
regarding file type recognition: .mdwn is markdown
to be marked as having been forwarded to the upstream software
author(s) Bram Moolenaar <[email protected]>
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
672597: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672597
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Hi Bram,
The attached patch adds *.mdwn (extension used by ikiwiki) as a known
extension for markdown files.
Cheers,
--
James
GPG Key: 4096R/331BA3DB 2011-12-05 James McCoy <[email protected]>
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1101,7 +1101,7 @@
au BufNewFile,BufRead *.map setf map
" Markdown
-au BufNewFile,BufRead *.markdown,*.mdown,*.mkd,*.mkdn,README.md setf markdown
+au BufNewFile,BufRead *.markdown,*.mdown,*.mkd,*.mkdn,*.mdwn,README.md setf markdown
" Mason
au BufNewFile,BufRead *.mason,*.mhtml setf mason
signature.asc
Description: Digital signature
--- End Message ---