annotate runtime/pack/dist/opt/matchit/autoload/matchit.vim @ 35172:c98f002b1fe4 default tip

runtime(doc): fix typo in usr_52.txt Commit: https://github.com/vim/vim/commit/b7258738f80f26be302a84a99f968b3bdc2f29bb Author: Christian Brabandt <cb@256bit.org> Date: Sun May 12 19:04:47 2024 +0200 runtime(doc): fix typo in usr_52.txt fixes: https://github.com/vim/vim/issues/14758 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 12 May 2024 19:15:08 +0200
parents ea044451c98f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " matchit.vim: (global plugin) Extended "%" matching
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " autload script of matchit plugin, see ../plugin/matchit.vim
32709
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
3 " Last Change: Jan 24, 2022
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
4
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
5 " Neovim does not support scriptversion
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
6 if has("vimscript-4")
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
7 scriptversion 4
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
8 endif
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 let s:last_mps = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let s:last_words = ":"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 let s:patBR = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 let s:save_cpo = &cpo
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 set cpo&vim
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 " Auto-complete mappings: (not yet "ready for prime time")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 " TODO Read :help write-plugin for the "right" way to let the user
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 " specify a key binding.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 " let g:match_auto = '<C-]>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 " let g:match_autoCR = '<C-CR>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 " if exists("g:match_auto")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 " execute "inoremap " . g:match_auto . ' x<Esc>"=<SID>Autocomplete()<CR>Pls'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 " endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 " if exists("g:match_autoCR")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 " execute "inoremap " . g:match_autoCR . ' <CR><C-R>=<SID>Autocomplete()<CR>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 " endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 " if exists("g:match_gthhoh")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 " execute "inoremap " . g:match_gthhoh . ' <C-O>:call <SID>Gthhoh()<CR>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 " endif " gthhoh = "Get the heck out of here!"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 let s:notslash = '\\\@1<!\%(\\\\\)*'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 function s:RestoreOptions()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 " In s:CleanUp(), :execute "set" restore_options .
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 let restore_options = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 if get(b:, 'match_ignorecase', &ic) != &ic
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
38 let restore_options ..= (&ic ? " " : " no") .. "ignorecase"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 let &ignorecase = b:match_ignorecase
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 if &ve != ''
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
42 let restore_options = " ve=" .. &ve .. restore_options
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 set ve=
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 endif
32709
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
45 if &smartcase
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
46 let restore_options = " smartcase " .. restore_options
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
47 set nosmartcase
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
48 endif
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49 return restore_options
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 endfunction
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
51
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
52 function matchit#Match_wrapper(word, forward, mode) range
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
53 let restore_options = s:RestoreOptions()
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
54 " In s:CleanUp(), we may need to check whether the cursor moved forward.
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
55 let startpos = [line("."), col(".")]
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
56 " if a count has been applied, use the default [count]% mode (see :h N%)
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
57 if v:count
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
58 exe "normal! " .. v:count .. "%"
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
59 return s:CleanUp(restore_options, a:mode, startpos)
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
60 end
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
61 if a:mode =~# "v" && mode(1) =~# 'ni'
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
62 exe "norm! gv"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
63 elseif a:mode == "o" && mode(1) !~# '[vV]'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
64 exe "norm! v"
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
65 " If this function was called from Visual mode, make sure that the cursor
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
66 " is at the correct end of the Visual range:
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
67 elseif a:mode == "v"
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
68 execute "normal! gv\<Esc>"
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
69 let startpos = [line("."), col(".")]
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
70 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
71
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
72 " First step: if not already done, set the script variables
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
73 " s:do_BR flag for whether there are backrefs
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
74 " s:pat parsed version of b:match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
75 " s:all regexp based on s:pat and the default groups
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
76 if !exists("b:match_words") || b:match_words == ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
77 let match_words = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
78 elseif b:match_words =~ ":"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
79 let match_words = b:match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
80 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
81 " Allow b:match_words = "GetVimMatchWords()" .
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
82 execute "let match_words =" b:match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
83 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
84 " Thanks to Preben "Peppe" Guldberg and Bram Moolenaar for this suggestion!
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
85 if (match_words != s:last_words) || (&mps != s:last_mps)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
86 \ || exists("b:match_debug")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
87 let s:last_mps = &mps
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
88 " quote the special chars in 'matchpairs', replace [,:] with \| and then
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
89 " append the builtin pairs (/*, */, #if, #ifdef, #ifndef, #else, #elif,
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
90 " #endif)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
91 let default = escape(&mps, '[$^.*~\\/?]') .. (strlen(&mps) ? "," : "") ..
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
92 \ '\/\*:\*\/,#\s*if\%(n\=def\)\=:#\s*else\>:#\s*elif\>:#\s*endif\>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
93 " s:all = pattern with all the keywords
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
94 let match_words = match_words .. (strlen(match_words) ? "," : "") .. default
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
95 let s:last_words = match_words
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
96 if match_words !~ s:notslash .. '\\\d'
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
97 let s:do_BR = 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
98 let s:pat = match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
99 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
100 let s:do_BR = 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
101 let s:pat = s:ParseWords(match_words)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
102 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
103 let s:all = substitute(s:pat, s:notslash .. '\zs[,:]\+', '\\|', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
104 " Just in case there are too many '\(...)' groups inside the pattern, make
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
105 " sure to use \%(...) groups, so that error E872 can be avoided
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
106 let s:all = substitute(s:all, '\\(', '\\%(', 'g')
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
107 let s:all = '\%(' .. s:all .. '\)'
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
108 if exists("b:match_debug")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
109 let b:match_pat = s:pat
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
110 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
111 " Reconstruct the version with unresolved backrefs.
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
112 let s:patBR = substitute(match_words .. ',',
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
113 \ s:notslash .. '\zs[,:]*,[,:]*', ',', 'g')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
114 let s:patBR = substitute(s:patBR, s:notslash .. '\zs:\{2,}', ':', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
115 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
116
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
117 " Second step: set the following local variables:
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
118 " matchline = line on which the cursor started
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
119 " curcol = number of characters before match
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
120 " prefix = regexp for start of line to start of match
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
121 " suffix = regexp for end of match to end of line
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
122 " Require match to end on or after the cursor and prefer it to
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
123 " start on or before the cursor.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
124 let matchline = getline(startpos[0])
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
125 if a:word != ''
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
126 " word given
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
127 if a:word !~ s:all
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
128 echohl WarningMsg|echo 'Missing rule for word:"'.a:word.'"'|echohl NONE
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
129 return s:CleanUp(restore_options, a:mode, startpos)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
130 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
131 let matchline = a:word
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
132 let curcol = 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
133 let prefix = '^\%('
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
134 let suffix = '\)$'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
135 " Now the case when "word" is not given
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
136 else " Find the match that ends on or after the cursor and set curcol.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
137 let regexp = s:Wholematch(matchline, s:all, startpos[1]-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
138 let curcol = match(matchline, regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
139 " If there is no match, give up.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
140 if curcol == -1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
141 return s:CleanUp(restore_options, a:mode, startpos)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
142 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
143 let endcol = matchend(matchline, regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
144 let suf = strlen(matchline) - endcol
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
145 let prefix = (curcol ? '^.*\%' .. (curcol + 1) .. 'c\%(' : '^\%(')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
146 let suffix = (suf ? '\)\%' .. (endcol + 1) .. 'c.*$' : '\)$')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
147 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
148 if exists("b:match_debug")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
149 let b:match_match = matchstr(matchline, regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
150 let b:match_col = curcol+1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
151 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
152
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
153 " Third step: Find the group and single word that match, and the original
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
154 " (backref) versions of these. Then, resolve the backrefs.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
155 " Set the following local variable:
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
156 " group = colon-separated list of patterns, one of which matches
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
157 " = ini:mid:fin or ini:fin
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
158 "
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
159 " Now, set group and groupBR to the matching group: 'if:endif' or
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
160 " 'while:endwhile' or whatever. A bit of a kluge: s:Choose() returns
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
161 " group . "," . groupBR, and we pick it apart.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
162 let group = s:Choose(s:pat, matchline, ",", ":", prefix, suffix, s:patBR)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
163 let i = matchend(group, s:notslash .. ",")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
164 let groupBR = strpart(group, i)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
165 let group = strpart(group, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
166 " Now, matchline =~ prefix . substitute(group,':','\|','g') . suffix
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
167 if s:do_BR " Do the hard part: resolve those backrefs!
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
168 let group = s:InsertRefs(groupBR, prefix, group, suffix, matchline)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
169 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
170 if exists("b:match_debug")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
171 let b:match_wholeBR = groupBR
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
172 let i = matchend(groupBR, s:notslash .. ":")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
173 let b:match_iniBR = strpart(groupBR, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
174 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
175
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
176 " Fourth step: Set the arguments for searchpair().
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
177 let i = matchend(group, s:notslash .. ":")
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
178 let j = matchend(group, '.*' .. s:notslash .. ":")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
179 let ini = strpart(group, 0, i-1)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
180 let mid = substitute(strpart(group, i,j-i-1), s:notslash .. '\zs:', '\\|', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
181 let fin = strpart(group, j)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
182 "Un-escape the remaining , and : characters.
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
183 let ini = substitute(ini, s:notslash .. '\zs\\\(:\|,\)', '\1', 'g')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
184 let mid = substitute(mid, s:notslash .. '\zs\\\(:\|,\)', '\1', 'g')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
185 let fin = substitute(fin, s:notslash .. '\zs\\\(:\|,\)', '\1', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
186 " searchpair() requires that these patterns avoid \(\) groups.
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
187 let ini = substitute(ini, s:notslash .. '\zs\\(', '\\%(', 'g')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
188 let mid = substitute(mid, s:notslash .. '\zs\\(', '\\%(', 'g')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
189 let fin = substitute(fin, s:notslash .. '\zs\\(', '\\%(', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
190 " Set mid. This is optimized for readability, not micro-efficiency!
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
191 if a:forward && matchline =~ prefix .. fin .. suffix
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
192 \ || !a:forward && matchline =~ prefix .. ini .. suffix
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
193 let mid = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
194 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
195 " Set flag. This is optimized for readability, not micro-efficiency!
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
196 if a:forward && matchline =~ prefix .. fin .. suffix
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
197 \ || !a:forward && matchline !~ prefix .. ini .. suffix
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
198 let flag = "bW"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
199 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
200 let flag = "W"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
201 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
202 " Set skip.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
203 if exists("b:match_skip")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
204 let skip = b:match_skip
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
205 elseif exists("b:match_comment") " backwards compatibility and testing!
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
206 let skip = "r:" .. b:match_comment
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
207 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
208 let skip = 's:comment\|string'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
209 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
210 let skip = s:ParseSkip(skip)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
211 if exists("b:match_debug")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
212 let b:match_ini = ini
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
213 let b:match_tail = (strlen(mid) ? mid .. '\|' : '') .. fin
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
214 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
215
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
216 " Fifth step: actually start moving the cursor and call searchpair().
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
217 " Later, :execute restore_cursor to get to the original screen.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
218 let view = winsaveview()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
219 call cursor(0, curcol + 1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
220 if skip =~ 'synID' && !(has("syntax") && exists("g:syntax_on"))
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
221 let skip = "0"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
222 else
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
223 execute "if " .. skip .. "| let skip = '0' | endif"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
224 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
225 let sp_return = searchpair(ini, mid, fin, flag, skip)
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15735
diff changeset
226 if &selection isnot# 'inclusive' && a:mode == 'v'
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15735
diff changeset
227 " move cursor one pos to the right, because selection is not inclusive
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
228 " add virtualedit=onemore, to make it work even when the match ends the
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
229 " line
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15735
diff changeset
230 if !(col('.') < col('$')-1)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
231 let eolmark=1 " flag to set a mark on eol (since we cannot move there)
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15735
diff changeset
232 endif
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15735
diff changeset
233 norm! l
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15735
diff changeset
234 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
235 let final_position = "call cursor(" .. line(".") .. "," .. col(".") .. ")"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
236 " Restore cursor position and original screen.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
237 call winrestview(view)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
238 normal! m'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
239 if sp_return > 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
240 execute final_position
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
241 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
242 if exists('eolmark') && eolmark
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
243 call setpos("''", [0, line('.'), col('$'), 0]) " set mark on the eol
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
244 endif
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
245 return s:CleanUp(restore_options, a:mode, startpos, mid .. '\|' .. fin)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
246 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
247
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
248 " Restore options and do some special handling for Operator-pending mode.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
249 " The optional argument is the tail of the matching group.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
250 fun! s:CleanUp(options, mode, startpos, ...)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
251 if strlen(a:options)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
252 execute "set" a:options
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
253 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
254 " Open folds, if appropriate.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
255 if a:mode != "o"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
256 if &foldopen =~ "percent"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
257 normal! zv
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
258 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
259 " In Operator-pending mode, we want to include the whole match
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
260 " (for example, d%).
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
261 " This is only a problem if we end up moving in the forward direction.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
262 elseif (a:startpos[0] < line(".")) ||
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
263 \ (a:startpos[0] == line(".") && a:startpos[1] < col("."))
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
264 if a:0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
265 " Check whether the match is a single character. If not, move to the
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
266 " end of the match.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
267 let matchline = getline(".")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
268 let currcol = col(".")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
269 let regexp = s:Wholematch(matchline, a:1, currcol-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
270 let endcol = matchend(matchline, regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
271 if endcol > currcol " This is NOT off by one!
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
272 call cursor(0, endcol)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
273 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
274 endif " a:0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
275 endif " a:mode != "o" && etc.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
276 return 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
277 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
278
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
279 " Example (simplified HTML patterns): if
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
280 " a:groupBR = '<\(\k\+\)>:</\1>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
281 " a:prefix = '^.\{3}\('
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
282 " a:group = '<\(\k\+\)>:</\(\k\+\)>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
283 " a:suffix = '\).\{2}$'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
284 " a:matchline = "123<tag>12" or "123</tag>12"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
285 " then extract "tag" from a:matchline and return "<tag>:</tag>" .
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
286 fun! s:InsertRefs(groupBR, prefix, group, suffix, matchline)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
287 if a:matchline !~ a:prefix ..
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
288 \ substitute(a:group, s:notslash .. '\zs:', '\\|', 'g') .. a:suffix
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
289 return a:group
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
290 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
291 let i = matchend(a:groupBR, s:notslash .. ':')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
292 let ini = strpart(a:groupBR, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
293 let tailBR = strpart(a:groupBR, i)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
294 let word = s:Choose(a:group, a:matchline, ":", "", a:prefix, a:suffix,
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
295 \ a:groupBR)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
296 let i = matchend(word, s:notslash .. ":")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
297 let wordBR = strpart(word, i)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
298 let word = strpart(word, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
299 " Now, a:matchline =~ a:prefix . word . a:suffix
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
300 if wordBR != ini
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
301 let table = s:Resolve(ini, wordBR, "table")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
302 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
303 let table = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
304 let d = 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
305 while d < 10
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
306 if tailBR =~ s:notslash .. '\\' .. d
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
307 let table = table .. d
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
308 else
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
309 let table = table .. "-"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
310 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
311 let d = d + 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
312 endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
313 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
314 let d = 9
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
315 while d
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
316 if table[d] != "-"
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
317 let backref = substitute(a:matchline, a:prefix .. word .. a:suffix,
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
318 \ '\' .. table[d], "")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
319 " Are there any other characters that should be escaped?
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
320 let backref = escape(backref, '*,:')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
321 execute s:Ref(ini, d, "start", "len")
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
322 let ini = strpart(ini, 0, start) .. backref .. strpart(ini, start+len)
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
323 let tailBR = substitute(tailBR, s:notslash .. '\zs\\' .. d,
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
324 \ escape(backref, '\\&'), 'g')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
325 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
326 let d = d-1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
327 endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
328 if exists("b:match_debug")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
329 if s:do_BR
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
330 let b:match_table = table
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
331 let b:match_word = word
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
332 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
333 let b:match_table = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
334 let b:match_word = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
335 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
336 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
337 return ini .. ":" .. tailBR
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
338 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
339
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
340 " Input a comma-separated list of groups with backrefs, such as
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
341 " a:groups = '\(foo\):end\1,\(bar\):end\1'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
342 " and return a comma-separated list of groups with backrefs replaced:
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
343 " return '\(foo\):end\(foo\),\(bar\):end\(bar\)'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
344 fun! s:ParseWords(groups)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
345 let groups = substitute(a:groups .. ",", s:notslash .. '\zs[,:]*,[,:]*', ',', 'g')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
346 let groups = substitute(groups, s:notslash .. '\zs:\{2,}', ':', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
347 let parsed = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
348 while groups =~ '[^,:]'
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
349 let i = matchend(groups, s:notslash .. ':')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
350 let j = matchend(groups, s:notslash .. ',')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
351 let ini = strpart(groups, 0, i-1)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
352 let tail = strpart(groups, i, j-i-1) .. ":"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
353 let groups = strpart(groups, j)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
354 let parsed = parsed .. ini
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
355 let i = matchend(tail, s:notslash .. ':')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
356 while i != -1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
357 " In 'if:else:endif', ini='if' and word='else' and then word='endif'.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
358 let word = strpart(tail, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
359 let tail = strpart(tail, i)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
360 let i = matchend(tail, s:notslash .. ':')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
361 let parsed = parsed .. ":" .. s:Resolve(ini, word, "word")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
362 endwhile " Now, tail has been used up.
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
363 let parsed = parsed .. ","
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
364 endwhile " groups =~ '[^,:]'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
365 let parsed = substitute(parsed, ',$', '', '')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
366 return parsed
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
367 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
368
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
369 " TODO I think this can be simplified and/or made more efficient.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
370 " TODO What should I do if a:start is out of range?
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
371 " Return a regexp that matches all of a:string, such that
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
372 " matchstr(a:string, regexp) represents the match for a:pat that starts
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
373 " as close to a:start as possible, before being preferred to after, and
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
374 " ends after a:start .
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
375 " Usage:
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
376 " let regexp = s:Wholematch(getline("."), 'foo\|bar', col(".")-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
377 " let i = match(getline("."), regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
378 " let j = matchend(getline("."), regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
379 " let match = matchstr(getline("."), regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
380 fun! s:Wholematch(string, pat, start)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
381 let group = '\%(' .. a:pat .. '\)'
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
382 let prefix = (a:start ? '\(^.*\%<' .. (a:start + 2) .. 'c\)\zs' : '^')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
383 let len = strlen(a:string)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
384 let suffix = (a:start+1 < len ? '\(\%>' .. (a:start+1) .. 'c.*$\)\@=' : '$')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
385 if a:string !~ prefix .. group .. suffix
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
386 let prefix = ''
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
387 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
388 return prefix .. group .. suffix
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
389 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
390
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
391 " No extra arguments: s:Ref(string, d) will
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
392 " find the d'th occurrence of '\(' and return it, along with everything up
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
393 " to and including the matching '\)'.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
394 " One argument: s:Ref(string, d, "start") returns the index of the start
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
395 " of the d'th '\(' and any other argument returns the length of the group.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
396 " Two arguments: s:Ref(string, d, "foo", "bar") returns a string to be
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
397 " executed, having the effect of
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
398 " :let foo = s:Ref(string, d, "start")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
399 " :let bar = s:Ref(string, d, "len")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
400 fun! s:Ref(string, d, ...)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
401 let len = strlen(a:string)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
402 if a:d == 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
403 let start = 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
404 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
405 let cnt = a:d
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
406 let match = a:string
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
407 while cnt
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
408 let cnt = cnt - 1
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
409 let index = matchend(match, s:notslash .. '\\(')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
410 if index == -1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
411 return ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
412 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
413 let match = strpart(match, index)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
414 endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
415 let start = len - strlen(match)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
416 if a:0 == 1 && a:1 == "start"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
417 return start - 2
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
418 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
419 let cnt = 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
420 while cnt
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
421 let index = matchend(match, s:notslash .. '\\(\|\\)') - 1
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
422 if index == -2
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
423 return ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
424 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
425 " Increment if an open, decrement if a ')':
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
426 let cnt = cnt + (match[index]=="(" ? 1 : -1) " ')'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
427 let match = strpart(match, index+1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
428 endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
429 let start = start - 2
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
430 let len = len - start - strlen(match)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
431 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
432 if a:0 == 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
433 return len
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
434 elseif a:0 == 2
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
435 return "let " .. a:1 .. "=" .. start .. "| let " .. a:2 .. "=" .. len
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
436 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
437 return strpart(a:string, start, len)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
438 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
439 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
440
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
441 " Count the number of disjoint copies of pattern in string.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
442 " If the pattern is a literal string and contains no '0' or '1' characters
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
443 " then s:Count(string, pattern, '0', '1') should be faster than
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
444 " s:Count(string, pattern).
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
445 fun! s:Count(string, pattern, ...)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
446 let pat = escape(a:pattern, '\\')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
447 if a:0 > 1
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
448 let foo = substitute(a:string, '[^' .. a:pattern .. ']', "a:1", "g")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
449 let foo = substitute(a:string, pat, a:2, "g")
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
450 let foo = substitute(foo, '[^' .. a:2 .. ']', "", "g")
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
451 return strlen(foo)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
452 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
453 let result = 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
454 let foo = a:string
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
455 let index = matchend(foo, pat)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
456 while index != -1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
457 let result = result + 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
458 let foo = strpart(foo, index)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
459 let index = matchend(foo, pat)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
460 endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
461 return result
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
462 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
463
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
464 " s:Resolve('\(a\)\(b\)', '\(c\)\2\1\1\2') should return table.word, where
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
465 " word = '\(c\)\(b\)\(a\)\3\2' and table = '-32-------'. That is, the first
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
466 " '\1' in target is replaced by '\(a\)' in word, table[1] = 3, and this
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
467 " indicates that all other instances of '\1' in target are to be replaced
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
468 " by '\3'. The hard part is dealing with nesting...
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
469 " Note that ":" is an illegal character for source and target,
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
470 " unless it is preceded by "\".
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
471 fun! s:Resolve(source, target, output)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
472 let word = a:target
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
473 let i = matchend(word, s:notslash .. '\\\d') - 1
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
474 let table = "----------"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
475 while i != -2 " There are back references to be replaced.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
476 let d = word[i]
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
477 let backref = s:Ref(a:source, d)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
478 " The idea is to replace '\d' with backref. Before we do this,
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
479 " replace any \(\) groups in backref with :1, :2, ... if they
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
480 " correspond to the first, second, ... group already inserted
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
481 " into backref. Later, replace :1 with \1 and so on. The group
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
482 " number w+b within backref corresponds to the group number
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
483 " s within a:source.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
484 " w = number of '\(' in word before the current one
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
485 let w = s:Count(
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
486 \ substitute(strpart(word, 0, i-1), '\\\\', '', 'g'), '\(', '1')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
487 let b = 1 " number of the current '\(' in backref
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
488 let s = d " number of the current '\(' in a:source
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
489 while b <= s:Count(substitute(backref, '\\\\', '', 'g'), '\(', '1')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
490 \ && s < 10
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
491 if table[s] == "-"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
492 if w + b < 10
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
493 " let table[s] = w + b
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
494 let table = strpart(table, 0, s) .. (w+b) .. strpart(table, s+1)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
495 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
496 let b = b + 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
497 let s = s + 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
498 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
499 execute s:Ref(backref, b, "start", "len")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
500 let ref = strpart(backref, start, len)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
501 let backref = strpart(backref, 0, start) .. ":" .. table[s]
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
502 \ .. strpart(backref, start+len)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
503 let s = s + s:Count(substitute(ref, '\\\\', '', 'g'), '\(', '1')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
504 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
505 endwhile
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
506 let word = strpart(word, 0, i-1) .. backref .. strpart(word, i+1)
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
507 let i = matchend(word, s:notslash .. '\\\d') - 1
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
508 endwhile
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
509 let word = substitute(word, s:notslash .. '\zs:', '\\', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
510 if a:output == "table"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
511 return table
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
512 elseif a:output == "word"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
513 return word
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
514 else
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
515 return table .. word
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
516 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
517 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
518
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
519 " Assume a:comma = ",". Then the format for a:patterns and a:1 is
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
520 " a:patterns = "<pat1>,<pat2>,..."
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
521 " a:1 = "<alt1>,<alt2>,..."
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
522 " If <patn> is the first pattern that matches a:string then return <patn>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
523 " if no optional arguments are given; return <patn>,<altn> if a:1 is given.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
524 fun! s:Choose(patterns, string, comma, branch, prefix, suffix, ...)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
525 let tail = (a:patterns =~ a:comma .. "$" ? a:patterns : a:patterns .. a:comma)
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
526 let i = matchend(tail, s:notslash .. a:comma)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
527 if a:0
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
528 let alttail = (a:1 =~ a:comma .. "$" ? a:1 : a:1 .. a:comma)
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
529 let j = matchend(alttail, s:notslash .. a:comma)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
530 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
531 let current = strpart(tail, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
532 if a:branch == ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
533 let currpat = current
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
534 else
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
535 let currpat = substitute(current, s:notslash .. a:branch, '\\|', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
536 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
537 while a:string !~ a:prefix .. currpat .. a:suffix
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
538 let tail = strpart(tail, i)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
539 let i = matchend(tail, s:notslash .. a:comma)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
540 if i == -1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
541 return -1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
542 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
543 let current = strpart(tail, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
544 if a:branch == ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
545 let currpat = current
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
546 else
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
547 let currpat = substitute(current, s:notslash .. a:branch, '\\|', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
548 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
549 if a:0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
550 let alttail = strpart(alttail, j)
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
551 let j = matchend(alttail, s:notslash .. a:comma)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
552 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
553 endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
554 if a:0
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
555 let current = current .. a:comma .. strpart(alttail, 0, j-1)
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
556 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
557 return current
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
558 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
559
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
560 fun! matchit#Match_debug()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
561 let b:match_debug = 1 " Save debugging information.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
562 " pat = all of b:match_words with backrefs parsed
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
563 amenu &Matchit.&pat :echo b:match_pat<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
564 " match = bit of text that is recognized as a match
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
565 amenu &Matchit.&match :echo b:match_match<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
566 " curcol = cursor column of the start of the matching text
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
567 amenu &Matchit.&curcol :echo b:match_col<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
568 " wholeBR = matching group, original version
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
569 amenu &Matchit.wh&oleBR :echo b:match_wholeBR<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
570 " iniBR = 'if' piece, original version
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
571 amenu &Matchit.ini&BR :echo b:match_iniBR<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
572 " ini = 'if' piece, with all backrefs resolved from match
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
573 amenu &Matchit.&ini :echo b:match_ini<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
574 " tail = 'else\|endif' piece, with all backrefs resolved from match
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
575 amenu &Matchit.&tail :echo b:match_tail<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
576 " fin = 'endif' piece, with all backrefs resolved from match
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
577 amenu &Matchit.&word :echo b:match_word<CR>
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
578 " '\'.d in ini refers to the same thing as '\'.table[d] in word.
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
579 amenu &Matchit.t&able :echo '0:' .. b:match_table .. ':9'<CR>
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
580 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
581
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
582 " Jump to the nearest unmatched "(" or "if" or "<tag>" if a:spflag == "bW"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
583 " or the nearest unmatched "</tag>" or "endif" or ")" if a:spflag == "W".
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
584 " Return a "mark" for the original position, so that
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
585 " let m = MultiMatch("bW", "n") ... call winrestview(m)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
586 " will return to the original position. If there is a problem, do not
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
587 " move the cursor and return {}, unless a count is given, in which case
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
588 " go up or down as many levels as possible and again return {}.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
589 " TODO This relies on the same patterns as % matching. It might be a good
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
590 " idea to give it its own matching patterns.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
591 fun! matchit#MultiMatch(spflag, mode)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
592 let restore_options = s:RestoreOptions()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
593 let startpos = [line("."), col(".")]
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
594 " save v:count1 variable, might be reset from the restore_cursor command
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
595 let level = v:count1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
596 if a:mode == "o" && mode(1) !~# '[vV]'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
597 exe "norm! v"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
598 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
599
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
600 " First step: if not already done, set the script variables
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
601 " s:do_BR flag for whether there are backrefs
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
602 " s:pat parsed version of b:match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
603 " s:all regexp based on s:pat and the default groups
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
604 " This part is copied and slightly modified from matchit#Match_wrapper().
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
605 if !exists("b:match_words") || b:match_words == ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
606 let match_words = ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
607 " Allow b:match_words = "GetVimMatchWords()" .
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
608 elseif b:match_words =~ ":"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
609 let match_words = b:match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
610 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
611 execute "let match_words =" b:match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
612 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
613 if (match_words != s:last_words) || (&mps != s:last_mps) ||
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
614 \ exists("b:match_debug")
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
615 let default = escape(&mps, '[$^.*~\\/?]') .. (strlen(&mps) ? "," : "") ..
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
616 \ '\/\*:\*\/,#\s*if\%(n\=def\)\=:#\s*else\>:#\s*elif\>:#\s*endif\>'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
617 let s:last_mps = &mps
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
618 let match_words = match_words .. (strlen(match_words) ? "," : "") .. default
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
619 let s:last_words = match_words
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
620 if match_words !~ s:notslash .. '\\\d'
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
621 let s:do_BR = 0
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
622 let s:pat = match_words
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
623 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
624 let s:do_BR = 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
625 let s:pat = s:ParseWords(match_words)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
626 endif
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
627 let s:all = '\%(' .. substitute(s:pat, '[,:]\+', '\\|', 'g') .. '\)'
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
628 if exists("b:match_debug")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
629 let b:match_pat = s:pat
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
630 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
631 " Reconstruct the version with unresolved backrefs.
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
632 let s:patBR = substitute(match_words .. ',',
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
633 \ s:notslash .. '\zs[,:]*,[,:]*', ',', 'g')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
634 let s:patBR = substitute(s:patBR, s:notslash .. '\zs:\{2,}', ':', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
635 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
636
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
637 " Second step: figure out the patterns for searchpair()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
638 " and save the screen, cursor position, and 'ignorecase'.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
639 " - TODO: A lot of this is copied from matchit#Match_wrapper().
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
640 " - maybe even more functionality should be split off
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
641 " - into separate functions!
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
642 let openlist = split(s:pat .. ',', s:notslash .. '\zs:.\{-}' .. s:notslash .. ',')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
643 let midclolist = split(',' .. s:pat, s:notslash .. '\zs,.\{-}' .. s:notslash .. ':')
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
644 call map(midclolist, {-> split(v:val, s:notslash .. ':')})
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
645 let closelist = []
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
646 let middlelist = []
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
647 call map(midclolist, {i,v -> [extend(closelist, v[-1 : -1]),
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
648 \ extend(middlelist, v[0 : -2])]})
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
649 call map(openlist, {i,v -> v =~# s:notslash .. '\\|' ? '\%(' .. v .. '\)' : v})
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
650 call map(middlelist, {i,v -> v =~# s:notslash .. '\\|' ? '\%(' .. v .. '\)' : v})
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
651 call map(closelist, {i,v -> v =~# s:notslash .. '\\|' ? '\%(' .. v .. '\)' : v})
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
652 let open = join(openlist, ',')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
653 let middle = join(middlelist, ',')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
654 let close = join(closelist, ',')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
655 if exists("b:match_skip")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
656 let skip = b:match_skip
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
657 elseif exists("b:match_comment") " backwards compatibility and testing!
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
658 let skip = "r:" .. b:match_comment
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
659 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
660 let skip = 's:comment\|string'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
661 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
662 let skip = s:ParseSkip(skip)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
663 let view = winsaveview()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
664
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
665 " Third step: call searchpair().
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
666 " Replace '\('--but not '\\('--with '\%(' and ',' with '\|'.
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
667 let openpat = substitute(open, '\%(' .. s:notslash .. '\)\@<=\\(', '\\%(', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
668 let openpat = substitute(openpat, ',', '\\|', 'g')
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
669 let closepat = substitute(close, '\%(' .. s:notslash .. '\)\@<=\\(', '\\%(', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
670 let closepat = substitute(closepat, ',', '\\|', 'g')
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
671 let middlepat = substitute(middle, '\%(' .. s:notslash .. '\)\@<=\\(', '\\%(', 'g')
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
672 let middlepat = substitute(middlepat, ',', '\\|', 'g')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
673
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
674 if skip =~ 'synID' && !(has("syntax") && exists("g:syntax_on"))
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
675 let skip = '0'
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
676 else
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
677 try
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
678 execute "if " .. skip .. "| let skip = '0' | endif"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
679 catch /^Vim\%((\a\+)\)\=:E363/
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
680 " We won't find anything, so skip searching, should keep Vim responsive.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
681 return {}
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
682 endtry
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
683 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
684 mark '
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
685 while level
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
686 if searchpair(openpat, middlepat, closepat, a:spflag, skip) < 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
687 call s:CleanUp(restore_options, a:mode, startpos)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
688 return {}
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
689 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
690 let level = level - 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
691 endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
692
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
693 " Restore options and return a string to restore the original position.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
694 call s:CleanUp(restore_options, a:mode, startpos)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
695 return view
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
696 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
697
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
698 " Search backwards for "if" or "while" or "<tag>" or ...
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
699 " and return "endif" or "endwhile" or "</tag>" or ... .
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
700 " For now, this uses b:match_words and the same script variables
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
701 " as matchit#Match_wrapper() . Later, it may get its own patterns,
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
702 " either from a buffer variable or passed as arguments.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
703 " fun! s:Autocomplete()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
704 " echo "autocomplete not yet implemented :-("
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
705 " if !exists("b:match_words") || b:match_words == ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
706 " return ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
707 " end
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
708 " let startpos = matchit#MultiMatch("bW")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
709 "
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
710 " if startpos == ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
711 " return ""
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
712 " endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
713 " " - TODO: figure out whether 'if' or '<tag>' matched, and construct
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
714 " " - the appropriate closing.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
715 " let matchline = getline(".")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
716 " let curcol = col(".") - 1
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
717 " " - TODO: Change the s:all argument if there is a new set of match pats.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
718 " let regexp = s:Wholematch(matchline, s:all, curcol)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
719 " let suf = strlen(matchline) - matchend(matchline, regexp)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
720 " let prefix = (curcol ? '^.\{' . curcol . '}\%(' : '^\%(')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
721 " let suffix = (suf ? '\).\{' . suf . '}$' : '\)$')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
722 " " Reconstruct the version with unresolved backrefs.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
723 " let patBR = substitute(b:match_words.',', '[,:]*,[,:]*', ',', 'g')
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
724 " let patBR = substitute(patBR, ':\{2,}', ':', "g")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
725 " " Now, set group and groupBR to the matching group: 'if:endif' or
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
726 " " 'while:endwhile' or whatever.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
727 " let group = s:Choose(s:pat, matchline, ",", ":", prefix, suffix, patBR)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
728 " let i = matchend(group, s:notslash . ",")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
729 " let groupBR = strpart(group, i)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
730 " let group = strpart(group, 0, i-1)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
731 " " Now, matchline =~ prefix . substitute(group,':','\|','g') . suffix
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
732 " if s:do_BR
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
733 " let group = s:InsertRefs(groupBR, prefix, group, suffix, matchline)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
734 " endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
735 " " let g:group = group
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
736 "
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
737 " " - TODO: Construct the closing from group.
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
738 " let fake = "end" . expand("<cword>")
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
739 " execute startpos
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
740 " return fake
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
741 " endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
742
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
743 " Close all open structures. "Get the heck out of here!"
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
744 " fun! s:Gthhoh()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
745 " let close = s:Autocomplete()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
746 " while strlen(close)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
747 " put=close
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
748 " let close = s:Autocomplete()
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
749 " endwhile
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
750 " endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
751
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
752 " Parse special strings as typical skip arguments for searchpair():
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
753 " s:foo becomes (current syntax item) =~ foo
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
754 " S:foo becomes (current syntax item) !~ foo
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
755 " r:foo becomes (line before cursor) =~ foo
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
756 " R:foo becomes (line before cursor) !~ foo
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
757 fun! s:ParseSkip(str)
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
758 let skip = a:str
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
759 if skip[1] == ":"
32709
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
760 if skip[0] ==# "s"
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
761 let skip = "synIDattr(synID(line('.'),col('.'),1),'name') =~? '" ..
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
762 \ strpart(skip,2) .. "'"
32709
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
763 elseif skip[0] ==# "S"
26708
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
764 let skip = "synIDattr(synID(line('.'),col('.'),1),'name') !~? '" ..
f0d7cb510ce3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 19574
diff changeset
765 \ strpart(skip,2) .. "'"
32709
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
766 elseif skip[0] ==# "r"
27459
5825405e4e2c Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26708
diff changeset
767 let skip = "strpart(getline('.'),0,col('.'))=~'" .. strpart(skip,2) .. "'"
32709
ea044451c98f update matchit (#12611)
Christian Brabandt <cb@256bit.org>
parents: 27459
diff changeset
768 elseif skip[0] ==# "R"
27459
5825405e4e2c Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26708
diff changeset
769 let skip = "strpart(getline('.'),0,col('.'))!~'" .. strpart(skip,2) .. "'"
15735
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
770 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
771 endif
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
772 return skip
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
773 endfun
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
774
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
775 let &cpo = s:save_cpo
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
776 unlet s:save_cpo
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
777
5688ec97294b Add missing matchit file.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
778 " vim:sts=2:sw=2:et: