runtime(vim): Remove trailing comma from match_words
Commit:
https://github.com/vim/vim/commit/7ceaa8f3ddbaad75fa02f91c0b354661b38253cb
Author: Doug Kearns <[email protected]>
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 <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
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 <[email protected]>
-" Last Change: 2025 Jan 3
+" Last Change: 2025 Jan 06
" Former Maintainer: Bram Moolenaar <[email protected]>
" Contributors: Riley Bruins <[email protected]>
('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 [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1tUqh0-00BmMo-EP%40256bit.org.