Hi, 2015-12-5(Sat) 21:07:19 UTC+9 Christian Brabandt: > Hi Elimar! > > On Fr, 04 Dez 2015, Elimar Riesebieter wrote: > > > * Christian Brabandt <[email protected]> [2015-12-04 14:33 +0100]: > > > > > Hi Bram! > > > > > > On Do, 03 Dez 2015, Bram Moolenaar wrote: > > > > > > > > > > > Patch 7.4.956 > > > > Problem: A few more file name extensions not recognized. > > > > Solution: Add .asciidoc, .bzl, .gradle, etc. > > > > Files: runtime/filetype.vim > > > > > > > > > > > > *** ../vim-7.4.955/runtime/filetype.vim 2015-12-03 20:14:07.547768295 > > > > +0100 > > > > --- runtime/filetype.vim 2015-12-03 20:10:00.826467327 +0100 > > > > > > that file did not make it into the repository. > > > > It did: > > > > $ grep Last\ Change /usr/share/vim/vim74/filetype.vim > > " Last Change: 2015 Dec 03 > > Well, I was being unclear. What I meant was that the actual change > (besides the Last Change header) did not make it into that file.
I investigate. Patch 7.4.956 of tha main change seems to have already been done in the previous commit. $ git blame runtime/filetype.vim 071d4279 (Bram Moolenaar 2004-06-13 20:20:40 +0000 1) " Vim support file to detect file types 071d4279 (Bram Moolenaar 2004-06-13 20:20:40 +0000 2) " 071d4279 (Bram Moolenaar 2004-06-13 20:20:40 +0000 3) " Maintainer: Bram Moolenaar <[email protected]> f882d9f8 (Bram Moolenaar 2015-12-03 20:18:24 +0100 4) " Last Change: 2015 Dec 03 071d4279 (Bram Moolenaar 2004-06-13 20:20:40 +0000 5) ... ac7bd638 (Bram Moolenaar 2013-03-19 11:35:58 +0100 145) " AsciiDoc ca63501f (Bram Moolenaar 2015-09-25 20:34:21 +0200 146) au BufNewFile,BufRead *.asciidoc,*.adoc setf asciidoc ... 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 311) " Bazel (http://bazel.io) 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 312) autocmd BufRead,BufNewFile *.bzl,BUILD,WORKSPACE setfiletype bzl 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 313) ... 071d4279 (Bram Moolenaar 2004-06-13 20:20:40 +0000 831) " Groovy ca63501f (Bram Moolenaar 2015-09-25 20:34:21 +0200 832) au BufNewFile,BufRead *.gradle,*.groovy setf groovy ... 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 2121) " Systemd unit files 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 2122) au BufNewFile,BufRead */systemd/*.{automount,mount,path,service,socket,swap,target,timer} setf systemd 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 2123) ---- ca63501f (Bram Moolenaar 2015-09-25 20:34:21 +0200 146) au BufNewFile,BufRead *.asciidoc,*.adoc setf asciidoc ca63501f (Bram Moolenaar 2015-09-25 20:34:21 +0200 832) au BufNewFile,BufRead *.gradle,*.groovy setf groovy Above line was changed by following commit. > commit ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7 > Author: Bram Moolenaar <[email protected]> > Date: Fri Sep 25 20:34:21 2015 +0200 > > Update various runtime files. https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7#diff-44a099e40ae628aef90a28c6408a4c61L146 https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7#diff-44a099e40ae628aef90a28c6408a4c61L829 ---- 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 312) autocmd BufRead,BufNewFile *.bzl,BUILD,WORKSPACE setfiletype bzl 60cce2fb (Bram Moolenaar 2015-10-13 23:21:27 +0200 2122) au BufNewFile,BufRead */systemd/*.{automount,mount,path,service,socket,swap,target,timer} setf systemd Above line was changed by following commit. > commit 60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d > Author: Bram Moolenaar <[email protected]> > Date: Tue Oct 13 23:21:27 2015 +0200 > > Update runtime files. -- Best regards, Hirohito Higashi (a.k.a h_east) -- -- 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/d/optout.
