comparison runtime/pack/dist/opt/matchit/plugin/matchit.vim @ 15334:9d3d7b0f4861

Update runtime files commit https://github.com/vim/vim/commit/4c05fa08c9739e307ddc88ac91ba6d208f1fd68e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 1 15:32:17 2019 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Tue, 01 Jan 2019 15:45:06 +0100
parents 1cfeee3ba4cd
children fe57e4f0eac1
comparison
equal deleted inserted replaced
15333:37502e631202 15334:9d3d7b0f4861
1 " matchit.vim: (global plugin) Extended "%" matching 1 " matchit.vim: (global plugin) Extended "%" matching
2 " Last Change: 2018 Jul 3 by Christian Brabandt 2 " Last Change: 2018 Dec 31
3 " Maintainer: Benji Fisher PhD <benji@member.AMS.org> 3 " Maintainer: Benji Fisher PhD <benji@member.AMS.org>
4 " Version: 1.13.3, for Vim 6.3+ 4 " Version: 1.13.3, for Vim 6.3+
5 " Fix from Fernando Torres included. 5 " Fix from Fernando Torres included.
6 " Improvement from Ken Takata included. 6 " Improvement from Ken Takata included.
7 " URL: http://www.vim.org/script.php?script_id=39 7 " URL: http://www.vim.org/script.php?script_id=39
35 " TODO: Allow :let b:match_words = '\(\(foo\)\(bar\)\):\3\2:end\1' 35 " TODO: Allow :let b:match_words = '\(\(foo\)\(bar\)\):\3\2:end\1'
36 " TODO: Make backrefs safer by using '\V' (very no-magic). 36 " TODO: Make backrefs safer by using '\V' (very no-magic).
37 " TODO: Add a level of indirection, so that custom % scripts can use my 37 " TODO: Add a level of indirection, so that custom % scripts can use my
38 " work but extend it. 38 " work but extend it.
39 39
40 " allow user to prevent loading 40 " Allow user to prevent loading and prevent duplicate loading.
41 " and prevent duplicate loading
42 if exists("loaded_matchit") || &cp 41 if exists("loaded_matchit") || &cp
43 finish 42 finish
44 endif 43 endif
45 let loaded_matchit = 1 44 let loaded_matchit = 1
46 let s:last_mps = "" 45 let s:last_mps = ""