From a942dea157aa6a89f1d2180d3386a65b3d320be2 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Mon, 6 Jan 2025 18:16:06 +0100 Subject: vim-patch:7ceaa8f: runtime(vim): Remove trailing comma from match_words fixes: vim/vim#16377 (`filetype plugin indent on` breaks matchit). closes: vim/vim#16389 https://github.com/vim/vim/commit/7ceaa8f3ddbaad75fa02f91c0b354661b38253cb Co-authored-by: Doug Kearns --- runtime/ftplugin/vim.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/ftplugin/vim.vim') diff --git a/runtime/ftplugin/vim.vim b/runtime/ftplugin/vim.vim index 3eaf748996..6ba057fc03 100644 --- a/runtime/ftplugin/vim.vim +++ b/runtime/ftplugin/vim.vim @@ -1,7 +1,7 @@ " Vim filetype plugin " Language: Vim " Maintainer: Doug Kearns -" Last Change: 2025 Jan 3 +" Last Change: 2025 Jan 06 " Former Maintainer: Bram Moolenaar " Contributors: Riley Bruins ('commentstring') @@ -104,7 +104,7 @@ if exists("loaded_matchit") \ '\\)\@!\S:\,' .. \ '\:\,' .. \ '\:\,' .. - \ '\:\,' + \ '\:\' " Ignore syntax region commands and settings, any 'en*' would clobber " if-endif. -- cgit