runtime(vim): Remove trailing comma from match_words Commit: https://github.com/vim/vim/commit/7ceaa8f3ddbaad75fa02f91c0b354661b38253cb Author: Doug Kearns <dougkea...@gmail.com> Date: Mon Jan 6 18:12:11 2025 +0100
runtime(vim): Remove trailing comma from match_words fixes: https://github.com/vim/vim/issues/16377 (`filetype plugin indent on` breaks matchit). closes: https://github.com/vim/vim/issues/16389 Signed-off-by: Doug Kearns <dougkea...@gmail.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/ftplugin/vim.vim b/runtime/ftplugin/vim.vim index d960da801..2c883a537 100644 --- a/runtime/ftplugin/vim.vim +++ b/runtime/ftplugin/vim.vim @@ -1,7 +1,7 @@ " Vim filetype plugin " Language: Vim " Maintainer: Doug Kearns <dougkea...@gmail.com> -" Last Change: 2025 Jan 3 +" Last Change: 2025 Jan 06 " Former Maintainer: Bram Moolenaar <b...@vim.org> " Contributors: Riley Bruins <ribr...@gmail.com> ('commentstring') @@ -109,7 +109,7 @@ if exists("loaded_matchit") \ '\<aug\%[roup]\s\+\%(END\>\)\@!\S:\<aug\%[roup]\s\+END\>,' .. \ '\<class\>:\<endclass\>,' .. \ '\<interface\>:\<endinterface\>,' .. - \ '\<enum\>:\<endenum\>,' + \ '\<enum\>:\<endenum\>' " Ignore syntax region commands and settings, any 'en*' would clobber " if-endif. -- -- 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 visit https://groups.google.com/d/msgid/vim_dev/E1tUqh0-00BmMo-EP%40256bit.org.