Patch 9.0.1261 Problem: Elsa files are not recognized. Solution: Add a pattern for Elsa files. (Amaan Qureshi, closes #11908) Files: runtime/filetype.vim, src/testdir/test_filetype.vim
*** ../vim-9.0.1260/runtime/filetype.vim 2023-01-28 18:05:35.484642913 +0000 --- runtime/filetype.vim 2023-01-29 17:48:01.757620976 +0000 *************** *** 629,634 **** --- 629,637 ---- " Elm Filter Rules file au BufNewFile,BufRead filter-rules setf elmfilt + " Elsa - https://github.com/ucsd-progsys/elsa + au BufNewFile,BufRead *.lc setf elsa + " ESMTP rc file au BufNewFile,BufRead *esmtprc setf esmtprc *** ../vim-9.0.1260/src/testdir/test_filetype.vim 2023-01-28 18:05:35.484642913 +0000 --- src/testdir/test_filetype.vim 2023-01-29 17:48:30.833609048 +0000 *************** *** 179,184 **** --- 179,185 ---- \ 'elixir': ['file.ex', 'file.exs', 'mix.lock'], \ 'elm': ['file.elm'], \ 'elmfilt': ['filter-rules'], + \ 'elsa': ['file.lc'], \ 'elvish': ['file.elv'], \ 'epuppet': ['file.epp'], \ 'erlang': ['file.erl', 'file.hrl', 'file.yaws'], *** ../vim-9.0.1260/src/version.c 2023-01-29 14:11:21.562365400 +0000 --- src/version.c 2023-01-29 17:49:46.425578590 +0000 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 1261, /**/ -- hundred-and-one symptoms of being an internet addict: 63. You start using smileys in your snail mail. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/20230129175041.C7BEA1C03AF%40moolenaar.net.
