Diff is against the latest runtime/filetype.vim in mercurial. It enables upstart syntax highlighting mode for files in ~/.config/upstart/.
Kind regards, James. -- James Hunt ____________________________________ http://upstart.ubuntu.com/cookbook http://upstart.ubuntu.com/cookbook/upstart_cookbook.pdf -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
diff -r ad7bbe9ea65b runtime/filetype.vim --- a/runtime/filetype.vim Tue Feb 26 22:54:11 2013 +0100 +++ b/runtime/filetype.vim Fri Mar 01 17:00:26 2013 +0000 @@ -2194,8 +2194,12 @@ au BufNewFile,BufRead */etc/updatedb.conf setf updatedb " Upstart (init(8)) config files -au BufNewFile,BufRead */etc/init/*.conf,*/.init/*.conf setf upstart -au BufNewFile,BufRead */etc/init/*.override,*/.init/*.override setf upstart +au BufNewFile,BufRead */usr/share/upstart/*.conf setf upstart +au BufNewFile,BufRead */usr/share/upstart/*.override setf upstart +au BufNewFile,BufRead */etc/init/*.conf,*/etc/init/*.override setf upstart +au BufNewFile,BufRead */.init/*.conf,*/.init/*.override setf upstart +au BufNewFile,BufRead */.config/upstart/*.conf setf upstart +au BufNewFile,BufRead */.config/upstart/*.override setf upstart " Vera au BufNewFile,BufRead *.vr,*.vri,*.vrh setf vera
