Skip to content

Commit 7ceaa8f

Browse files
dkearnschrisbra
authored andcommitted
runtime(vim): Remove trailing comma from match_words
fixes: #16377 (`filetype plugin indent on` breaks matchit). closes: #16389 Signed-off-by: Doug Kearns <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent 202ebc6 commit 7ceaa8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

runtime/ftplugin/vim.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim filetype plugin
22
" Language: Vim
33
" Maintainer: Doug Kearns <[email protected]>
4-
" Last Change: 2025 Jan 3
4+
" Last Change: 2025 Jan 06
55
" Former Maintainer: Bram Moolenaar <[email protected]>
66
" Contributors: Riley Bruins <[email protected]> ('commentstring')
77

@@ -109,7 +109,7 @@ if exists("loaded_matchit")
109109
\ '\<aug\%[roup]\s\+\%(END\>\)\@!\S:\<aug\%[roup]\s\+END\>,' ..
110110
\ '\<class\>:\<endclass\>,' ..
111111
\ '\<interface\>:\<endinterface\>,' ..
112-
\ '\<enum\>:\<endenum\>,'
112+
\ '\<enum\>:\<endenum\>'
113113

114114
" Ignore syntax region commands and settings, any 'en*' would clobber
115115
" if-endif.

0 commit comments

Comments
 (0)