diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-10-19 14:17:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-19 14:17:22 -0700 |
commit | 029b828693dbf774e86b6478b5744686d4cdf747 (patch) | |
tree | 0d94038dfe138f581367458a4b968cad73941be4 /runtime | |
parent | d89ec55c45e73544c614a3436ae16b9ea17b5535 (diff) | |
parent | d27fc0825732d575109ce7d149164e86d7b2cb98 (diff) | |
download | rneovim-029b828693dbf774e86b6478b5744686d4cdf747.tar.gz rneovim-029b828693dbf774e86b6478b5744686d4cdf747.tar.bz2 rneovim-029b828693dbf774e86b6478b5744686d4cdf747.zip |
Merge #11249 from janlazo/vim-8.1.2151
vim-patch:8.1.{2151,2152,2161,2162,2175,2177,2178}
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 6abf9da55f..8ce45b6a50 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -421,6 +421,9 @@ au BufNewFile,BufRead *.csp,*.fdr setf csp au BufNewFile,BufRead *.pld setf cupl au BufNewFile,BufRead *.si setf cuplsim +" Dart +au BufRead,BufNewfile *.dart,*.drt setf dart + " Debian Control au BufNewFile,BufRead */debian/control setf debcontrol au BufNewFile,BufRead control @@ -975,6 +978,9 @@ au BufNewFile,BufRead hg-editor-*.txt setf hgcommit " Mercurial config (looks like generic config file) au BufNewFile,BufRead *.hgrc,*hgrc setf cfg +" Meson Build system config +au BufNewFile,BufRead meson.build,meson_options.txt setf meson + " Messages (logs mostly) au BufNewFile,BufRead */log/{auth,cron,daemon,debug,kern,lpr,mail,messages,news/news,syslog,user}{,.log,.err,.info,.warn,.crit,.notice}{,.[0-9]*,-[0-9]*} setf messages |