Patch 9.0.1430 Problem: Livebook files are not recognized. Solution: Add a pattern for Livebook files. (Mathias Jean Johansen, closes #12203) Files: runtime/filetype.vim, src/testdir/test_filetype.vim
*** ../vim-9.0.1429/runtime/filetype.vim 2023-03-23 15:45:42.804274880 +0000 --- runtime/filetype.vim 2023-03-28 21:23:34.757482340 +0100 *************** *** 1162,1167 **** --- 1162,1170 ---- " LiteStep RC files au BufNewFile,BufRead */LiteStep/*/*.rc setf litestep + " Livebook + au BufNewFile,BufRead *.livemd setf livebook + " Login access au BufNewFile,BufRead */etc/login.access setf loginaccess *** ../vim-9.0.1429/src/testdir/test_filetype.vim 2023-03-23 15:45:42.804274880 +0000 --- src/testdir/test_filetype.vim 2023-03-28 21:24:11.809616418 +0100 *************** *** 336,341 **** --- 336,342 ---- \ 'lite': ['file.lite', 'file.lt'], \ 'litestep': ['/LiteStep/any/file.rc', 'any/LiteStep/any/file.rc'], \ 'logcheck': ['/etc/logcheck/file.d-some/file', '/etc/logcheck/file.d/file', 'any/etc/logcheck/file.d-some/file', 'any/etc/logcheck/file.d/file'], + \ 'livebook': ['file.livemd'], \ 'loginaccess': ['/etc/login.access', 'any/etc/login.access'], \ 'logindefs': ['/etc/login.defs', 'any/etc/login.defs'], \ 'logtalk': ['file.lgt'], *** ../vim-9.0.1429/src/version.c 2023-03-26 21:27:21.222798864 +0100 --- src/version.c 2023-03-28 21:23:07.285376916 +0100 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 1430, /**/ -- ARTHUR: Well, I AM king... DENNIS: Oh king, eh, very nice. An' how'd you get that, eh? By exploitin' the workers -- by 'angin' on to outdated imperialist dogma which perpetuates the economic an' social differences in our society! If there's ever going to be any progress-- The Quest for the Holy Grail (Monty Python) /// Bram Moolenaar -- b...@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 /// -- -- 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 vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/20230328202904.50B931C128F%40moolenaar.net.