To: vim_dev@googlegroups.com Subject: Patch 9.0.0942 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0942 Problem: Workflow Description Language files are not recognized. Solution: Add a pattern for the "wdl" filetype. (Matt Dunford, closes #11611) Files: runtime/filetype.vim, src/testdir/test_filetype.vim *** ../vim-9.0.0941/runtime/filetype.vim 2022-11-23 22:34:20.063983596 +0000 --- runtime/filetype.vim 2022-11-24 19:55:35.506758553 +0000 *************** *** 2349,2354 **** --- 2349,2357 ---- " Web Services Description Language (WSDL) au BufNewFile,BufRead *.wsdl setf xml + " Workflow Description Language (WDL) + au BufNewFile,BufRead *.wdl setf wdl + " XLIFF (XML Localisation Interchange File Format) is also XML au BufNewFile,BufRead *.xlf setf xml au BufNewFile,BufRead *.xliff setf xml *** ../vim-9.0.0941/src/testdir/test_filetype.vim 2022-11-24 10:58:07.659390137 +0000 --- src/testdir/test_filetype.vim 2022-11-24 19:55:35.510758553 +0000 *************** *** 623,628 **** --- 623,629 ---- \ 'vroom': ['file.vroom'], \ 'vue': ['file.vue'], \ 'wast': ['file.wast', 'file.wat'], + \ 'wdl': ['file.wdl'], \ 'webmacro': ['file.wm'], \ 'wget': ['.wgetrc', 'wgetrc'], \ 'wget2': ['.wget2rc', 'wget2rc'], *** ../vim-9.0.0941/src/version.c 2022-11-24 15:15:05.310785093 +0000 --- src/version.c 2022-11-24 19:56:54.114765031 +0000 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 942, /**/ -- In a world without fences, who needs Gates and Windows? /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///