Home
last modified time | relevance | path

Searched refs:skip (Results 1 – 25 of 428) sorted by relevance

12345678910>>...18

/vim-8.2.3635/runtime/syntax/
H A Dfalcon.vim29 syn region falconSymbol start="[]})\"':]\@<!:\"" end="\"" skip="\\\\\|\\\"" contains=@falconStringS…
83 syn region falconSymbol start="[]})\"':]\@<!:\"" end="\"" skip="\\\\\|\\\"" contains=falconStringEs…
86 syn region falconString matchgroup=falconStringDelimiter start="\"" end="\"" skip="\\\\\|\\\"" cont…
87 syn region falconString matchgroup=falconStringDelimiter start="'" end="'" skip="\\\\\|\\'" fold
88 syn region falconString matchgroup=falconStringDelimiter start="`" end="`" skip="\\\\\|\\`" contain…
92 syn region falconString matchgroup=falconStringDelimiter start="%[qw]{" end="}" skip="\\\\\|\\}" fo…
93 syn region falconString matchgroup=falconStringDelimiter start="%[qw]<" end=">" skip="\\\\\|\\>" fo…
95 syn region falconString matchgroup=falconStringDelimiter start="%[qw](" end=")" skip="\\\\\|\\)" fo…
97 syn region falconSymbol matchgroup=falconSymbolDelimiter start="%[s]{" end="}" skip="\\\\\|\\}" fol…
98 syn region falconSymbol matchgroup=falconSymbolDelimiter start="%[s]<" end=">" skip="\\\\\|\\>" fol…
[all …]
H A Druby.vim137 syn region rubyNestedParentheses start="(" skip="\\\\\|\\)" end=")" transparent contained
138 syn region rubyNestedCurlyBraces start="{" skip="\\\\\|\\}" end="}" transparent contained
139 syn region rubyNestedAngleBrackets start="<" skip="\\\\\|\\>" end=">" transparent contained
140 syn region rubyNestedSquareBrackets start="\[" skip="\\\\\|\\\]" end="\]" transparent contained
148 syn region rubyRegexpComment matchgroup=rubyRegexpSpecial start="(?#" skip="\\\\\|\\)…
192 …ySymbol matchgroup=rubySymbolDelimiter start="[]})\"':]\@1<!:\"" end="\"" skip="\\\\\|\\\"" contai…
247 SynFold 'string' syn region rubyString matchgroup=rubyStringDelimiter start="`" end="`" skip="\\\\\…
364 …SynFold 'class' syn region rubyClassBlock start="\<class\>" matchgroup=rubyClass skip="\<end:"…
375 …SynFold 'do' syn region rubyDoBlock matchgroup=rubyControl start="\<do\>" skip="\<end:" end="\<end…
382 …SynFold 'begin' syn region rubyBlockExpression matchgroup=rubyControl start="\<begin\>" skip="…
[all …]
H A Draku.vim659 \ skip="\\]"
742 \ skip="\\/"
750 \ skip="\\\z1"
929 \ skip="\\]"
944 \ skip="\\/"
952 \ skip="\\!"
968 \ skip="\\)"
976 \ skip="\\]"
984 \ skip="\\}"
992 \ skip="\\>"
[all …]
H A Dtcl.vim105 syn region tcltkWidget matchgroup=tcltkWidgetColor start="\<button\>" matchgroup=NONE skip="^\s*$" …
106 syn region tcltkWidget matchgroup=tcltkWidgetColor start="\<scale\>" matchgroup=NONE skip="^\s*$" e…
110 syn region tcltkWidget matchgroup=tcltkWidgetColor start="\<entry\>" matchgroup=NONE skip="^\s*$" e…
111 syn region tcltkWidget matchgroup=tcltkWidgetColor start="\<frame\>" matchgroup=NONE skip="^\s*$" e…
130 syn region tcltkCommand matchgroup=tcltkCommandColor start="^\<variable\>" matchgroup=NONE skip="^\…
156 syn region tcltkCommand matchgroup=tcltkCommandColor start="\<namespace\>" matchgroup=NONE skip="^\…
202 " A string needs the skip argument as it may legitimately contain \".
204 syn region tclString start=+^"+ end=+"+ contains=@tclSpecialC,@Spell skip=+\\\\\|\\"+
206 …\\]"+ms=s+1 end=+"+ contains=@tclSpecialC,@tclVarRefC,tclEmbeddedStatement,@Spell skip=+\\\\\|\\"+
229 syn region tclComment start="^\s*\#" skip="\\$" end="$" contains=tclTodo,@Spell
[all …]
H A Dneomuttrc.vim45 syntax region muttrcRXString contained skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcRXChars
46 syntax region muttrcRXString contained skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcRXChars
48 " For some reason, skip refuses to match backslashes here...
51 syntax region muttrcRXString2 contained skipwhite start=+'+ skip=+\'+ end=+'+ contains=muttrcRXChars
52 syntax region muttrcRXString2 contained skipwhite start=+"+ skip=+\"+ end=+"+ contains=muttrcRXChars
258 syntax region muttrcMacroDescr contained keepend skipwhite start=+'+ms=e skip=+\\'+ end=+'+me=s
259 syntax region muttrcMacroDescr contained keepend skipwhite start=+"+ms=e skip=+\\"+ end=+"+me=s
315 syntax region muttrcSimplePatString contained keepend start=+"+ end=+"+ skip=+\\"+
316 syntax region muttrcSimplePatString contained keepend start=+'+ end=+'+ skip=+\\'+
317 syntax region muttrcSimplePatString contained keepend start=+[^ "']+ skip=+\\ + end=+\s+re=e-1
[all …]
H A Dmuttrc.vim49 syn region muttrcRXString contained skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcRXChars
50 syn region muttrcRXString contained skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcRXChars
52 " For some reason, skip refuses to match backslashes here...
55 syn region muttrcRXString2 contained skipwhite start=+'+ skip=+\'+ end=+'+ contains=muttrcRXChars
56 syn region muttrcRXString2 contained skipwhite start=+"+ skip=+\"+ end=+"+ contains=muttrcRXChars
530 syn region muttrcMacroDescr contained keepend skipwhite start=+\s*\S+ms=e skip=+\\ + end=+ \|$+me=s
531 syn region muttrcMacroDescr contained keepend skipwhite start=+'+ms=e skip=+\\'+ end=+'+me=s
532 syn region muttrcMacroDescr contained keepend skipwhite start=+"+ms=e skip=+\\"+ end=+"+me=s
582 syn region muttrcSimplePatString contained keepend start=+"+ end=+"+ skip=+\\"+
583 syn region muttrcSimplePatString contained keepend start=+'+ end=+'+ skip=+\\'+
[all …]
H A Dtexinfo.vim95 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@title " skip="\\$" end="$" contai…
98 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@vskip " skip="\\$" end="$" contai…
107 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="@author " skip="\\$" end="$" contains=tex…
119 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@appendix" skip="\\$" end="$" contains…
126 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@chapter" skip="\\$" end="$" contains=…
127 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@heading" skip="\\$" end="$" contains=…
129 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@section" skip="\\$" end="$" contains=…
145 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@top" skip="\\$" end="$" contains=…
146 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@node" skip="\\$" end="$" contains=…
296 syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@set " skip="\\$" end="$" contains=te…
[all …]
H A Dxf86conf.vim46 …syn region xf86confString start=+"+ skip=+\\\\\|\\"+ end=+"+ contained contains=xf86confSpecialCha…
48 …syn region xf86confString start=+"+ skip=+\\\\\|\\"+ end=+"+ contained contains=xf86confSpecialCha…
63 …confSectionDelim start="^\s*Section\s\+\"Module\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" …
64 …onfSectionDelim start="^\s*Section\s\+\"Monitor\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" …
65 …6confSectionDelim start="^\s*Section\s\+\"Modes\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" …
66 …confSectionDelim start="^\s*Section\s\+\"Screen\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" …
67 …tionDelim start="^\s*SubSection\s\+\"[^\"]\+\"" end="^\s*EndSubSection\>" skip="#.*$\|\"[^\"]*\"" …
68 …=xf86confSectionDelim start="^\s*Mode\s\+\"[^\"]\+\"" end="^\s*EndMode\>" skip="#.*$\|\"[^\"]*\"" …
69 …tionDelim start="^\s*SubSection\s\+\"Display\"" end="^\s*EndSubSection\>" skip="#.*$\|\"[^\"]*\"" …
74 …confSectionDelim start="^\s*Section\s\+\"Screen\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" …
[all …]
H A Dsed.vim18 syn region sedAddress matchgroup=Special start="[{,;]\s*/\(\\/\)\="lc=1 skip="[^\\]\(\\\\\)*\\/" …
19 syn region sedAddress matchgroup=Special start="^\s*/\(\\/\)\=" skip="[^\\]\(\\\\\)*\\/" end="/I\…
59 …tchgroup=Special start=@\\'.__sed_delimiter.'\(\\'.__sed_delimiter.'\)\=@ skip=@[^\\]\(\\\\\)*\\'.…
60 …group=Special start=@'.__sed_delimiter.'\(\\\\\|\\'.__sed_delimiter.'\)*@ skip=@[^\\'.__sed_delimi…
61 …group=Special start=@'.__sed_delimiter.'\(\\\\\|\\'.__sed_delimiter.'\)*@ skip=@[^\\'.__sed_delimi…
65 syn region sedAddress matchgroup=Special start=+\\@\(\\@\)\=+ skip=+[^\\]\(\\\\\)*\\@+ end=+@I\=+ c…
66 syn region sedRegexp64 matchgroup=Special start=+@\(\\\\\|\\@\)*+ skip=+[^\\@]\(\\\\\)*\\@+ end=+@+…
67 syn region sedReplacement64 matchgroup=Special start=+@\(\\\\\|\\@\)*+ skip=+[^\\@]\(\\\\\)*\\@+ en…
H A Dc.vim63 …syn region cString start=+\(L\|u\|u8\|U\|R\|LR\|u8R\|uR\|UR\)\="+ skip=+\\\\\|\\"+ end=+"+ contai…
67 …syn region cString start=+\%(L\|U\|u8\)\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@S…
68 …syn region cCppString start=+\%(L\|U\|u8\)\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' con…
72 syn region cString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell extend
73 …syn region cCppString start=+L\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpeci…
96 … syn region cString start=+\%(U\|u8\=\)"+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,@Spell extend
98 …syn region cString start=+\%(U\|u8\=\)"+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spel…
225 …syn region cComment2String contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end="$" contains=…
235 …syn region cCommentL start="//" skip="\\$" end="$" keepend contains=@cCommentGroup,cSpaceError,@Sp…
402 syn region cIncluded display contained start=+"+ skip=+\\\\\|\\"+ end=+"+
[all …]
H A Dprocmail.vim15 syn region procmailString start=+"+ skip=+\\"+ end=+"+
16 syn region procmailString start=+'+ skip=+\\'+ end=+'+
18 syn region procmailVarDeclRegion start="^\s*[a-zA-Z0-9_]\+\s*="hs=e-1 skip=+\\$+ end=+$+ contains=p…
26 syn region procmailActionForward start=+^\s*!+ skip=+\\$+ end=+$+
27 syn region procmailActionPipe start=+^\s*|+ skip=+\\$+ end=+$+
H A Dsh.vim192 …syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+=\)\@=" skip="\\…
244 syn region shExpr matchgroup=shRange start="\[" skip=+\\\\\|\\$\|\[+ end="\]" contains=@shTestList,…
309 …syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained contains=sh…
312 syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained
317 syn region shCommandSubBQ start="`" skip="\\\\\|\\." end="`" contains=shBQComment,@shCommandSub…
333 …syn region shArithmetic matchgroup=shArithRegion start="\$((" skip='\\\\\|\\.' end="))" contains=…
334 …syn region shArithmetic matchgroup=shArithRegion start="\$\[" skip='\\\\\|\\.' end="\]" contains=…
377 …syn region shExSingleQuote matchGroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStrin…
378 …syn region shExDoubleQuote matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+ contains=shStrin…
563 …syn region shDerefPPSright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}' contains=@shPPSRi…
[all …]
H A Drst.vim24 \ start='\(^\z(\s*\).*\)\@<=::\n\s*\n' skip='^\s*$' end='^\(\z1\s\+\)\@!'
62 \ ' skip=+^$+' .
67 \ ' skip=+^$+' .
72 \ ' skip=+^$+' .
76 \ start='_\%(_\|[^:\\]*\%(\\.[^:\\]*\)*\):\_s' skip=+^$+ end=+^\s\@!+
79 \ start='_`[^`\\]*\%(\\.[^`\\]*\)*`:\_s' skip=+^$+ end=+^\s\@!+
82 \ start=+^__\_s+ skip=+^$+ end=+^\s\@!+
86 \ ' skip=+^$+' .
114 \ (' skip=+\\\\\|\\' . a:middle . '\|\s' . a:middle . '+') :
177 \ skip=+^$+
[all …]
H A Dfortran.vim391 syn region cIncluded contained start=+"[^("]+ skip=+\\\\\|\\"+ end=+"+ contains=fortranLeftMargin,f…
392 "syn region cIncluded contained start=+"[^("]+ skip=+\\\\\|\\"+ end=+"+
408 …syn region fortranProgram transparent fold keepend start="^\s*program\s\+\z(\a\w*\)" skip="^\([!c*…
409 …d keepend start="^\s*submodule\s\+(\a\w*\s*\(:\a\w*\s*\)*)\s*\z\(\a\w*\)" skip="^\([!c*]\|\s*#\).*…
410 …transparent fold keepend start="^\s*module\s\+\(procedure\)\@!\z(\a\w*\)" skip="^\([!c*]\|\s*#\).*…
414 …syn region fortranAssociate transparent fold keepend start="^\s*\<associate\s\+" skip="^\([!c*]\|\…
418 …syn region fortranProgram transparent fold keepend start="^\s*program\s\+\z(\a\w*\)" skip="^\s*[!#…
419 …d keepend start="^\s*submodule\s\+(\a\w*\s*\(:\a\w*\s*\)*)\s*\z\(\a\w*\)" skip="^\s*[!#].*$" exclu…
420 …transparent fold keepend start="^\s*module\s\+\(procedure\)\@!\z(\a\w*\)" skip="^\s*[!#].*$" exclu…
424 …syn region fortranAssociate transparent fold keepend start="^\s*\<associate\s\+" skip="^\s*[!#].*$…
[all …]
H A Dldif.vim17 syn region ldifStringValue matchgroup=ldifPunctuation start=/: / end=/\_$/ skip=/\n /
18 syn region ldifBase64Value matchgroup=ldifPunctuation start=/:: / end=/\_$/ skip=/\n /
19 syn region ldifFileValue matchgroup=ldifPunctuation start=/:< / end=/\_$/ skip=/\n /
21 syn region ldifComment start=/^#/ end=/\_$/ skip=/\n /
H A Ddockerfile.vim20 syntax region dockerfileFrom matchgroup=dockerfileKeyword start=/\v^\s*(FROM)\ze(\s|$)/ skip=/\v\\\…
32 syntax region dockerfileString contained start=/\v"/ skip=/\v\\./ end=/\v"/
33 syntax region dockerfileJSON contained keepend start=/\v\[/ skip=/\v\\\_./ end=/\v$/ contains=@JS…
34 syntax region dockerfileShell contained keepend start=/\v/ skip=/\v\\\_./ end=/\v$/ contains=@Shell
35 syntax region dockerfileValue contained keepend start=/\v/ skip=/\v\\\_./ end=/\v$/ contains=docke…
H A Ddictdconf.vim43 \ start=+"+ skip=+""\|\\\\\|\\"+ end=+"+
66 \ start=+"+ skip=+""\|\\\\\|\\"+ end=+"+
87 \ start=+"+ skip=+""\|\\\\\|\\"+ end=+"+
113 \ start=+"+ skip=+""+ end=+"+
119 \ start=+"+ skip=+""+ end=+"+
124 \ start=+"+ skip=+""\|\\\\\|\\"+ end=+"+
H A Dlatte.vim24 syn region latteString start=+\\"+ skip=+\\\\"+ end=+\\"+
26 syn region latteGroup matchgroup=Delimiter start="{" skip="\\[{}]" matchgroup=Delimiter end="}" con…
28 syn region latteUnquote matchgroup=Delimiter start="\\,{" skip="\\[{}]" matchgroup=Delimiter end="}…
29 syn region latteSplice matchgroup=Delimiter start="\\,@{" skip="\\[{}]" matchgroup=Delimiter end="}…
30 syn region latteQuote matchgroup=Delimiter start="\\'{" skip="\\[{}]" matchgroup=Delimiter end="}"
31 syn region latteQuote matchgroup=Delimiter start="\\`{" skip="\\[{}]" matchgroup=Delimiter end="}" …
H A Dfvwm.vim32 \ start='.' skip='\\$' end='$'
35 \ matchgroup=fvwmBackslash skip='\v\\"' end='"'
49 \ start='^\s*#\s' skip='\\$' end='$'
242 \ start='.' skip='\\$' end='$'
257 \ start='.' skip='\\$' end='$'
402 \ start='.' skip='\\$' end='$'
440 \ start='\S' skip='\\$' end='$'
455 \ start='\S' skip='\\$' end='$'
472 \ start='\S' skip='\\$' end='$'
489 \ start='.' skip='\\$' end='$'
[all …]
H A Dcalendar.vim18 syn region calendarCppString start=+L\="+ skip=+\\\\\|\\"\|\\$+ excludenl
24 \ skip='\\$' end='$'
34 \ skip='\\$' end='^\s*#\s*endif\>'
36 syn region calendarIncluded display contained start=+"+ skip=+\\\\\|\\"+
47 \ skip='\\$' end='$'
50 \ skip='\\$' end='$' keepend
H A Dxdefaults.vim32 " syn region xdefaultsLabel start=+^[^:]\{-}:+he=e-1 skip=+\\+ end="$"
34 syn region xdefaultsValue keepend start=+:+lc=1 skip=+\\+ end=+$+ contains=xdefaultsSpecial,xdef…
66 syn region xdefaultsPreProc start="^\s*#\s*\(if\|ifdef\|ifndef\|elif\|else\|endif\)\>" skip="\\$" e…
70 …syn region xdefaultsCppSkip contained start="^\s*#\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="…
72 syn region xdefaultsIncluded contained start=+"+ skip=+\\\\\|\\"+ end=+"+
76 syn region xdefaultsDefine start="^\s*#\s*\(define\|undef\)\>" skip="\\$" end="$" contains=ALLBUT,…
77 syn region xdefaultsPreProc start="^\s*#\s*\(pragma\>\|line\>\|warning\>\|warn\>\|error\>\)" skip="…
H A Dvera.vim114 syn region veraString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=veraSpecial,veraFormat,@Spell
118 syn region veraCppString start=+"+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=veraSpe…
186 …syntax region veraCommentString contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end=+\*/+me=…
187 …syntax region veraComment2String contained start=+\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end="$" contai…
195 …syn region veraCommentL start="//" skip="\\$" end="$" keepend contains=@veraCommentGroup,veraSpace…
244 …syn region veraCppSkip contained start="^\s*\(`\|#\)\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end…
246 syn region veraIncluded display contained start=+"+ skip=+\\\\\|\\"+ end=+"+
251 syn region veraDefine start="^\s*\(`\|#\)\s*\(define\|undef\)\>" skip="\\$" end="$" end="//"me=s-1…
252 syn region veraPreProc start="^\s*\(`\|#\)\s*\(pragma\>\|line\>\|warning\>\|error\>\)" skip="\\$" e…
256 syn region veraMulti transparent start='?' skip='::' end=':' contains=ALLBUT,@veraMultiGroup,@Spell
[all …]
/vim-8.2.3635/src/
H A Dex_eval.c1002 int skip; in ex_if() local
1074 int skip; in ex_else() local
1095 skip = TRUE; in ex_else()
1105 skip = TRUE; in ex_else()
1131 skip = TRUE; in ex_else()
1165 int skip; in ex_while() local
1606 int skip; in ex_try() local
1628 if (!skip) in ex_try()
1895 if (!skip) in ex_finally()
2091 if (!skip) in ex_endtry()
[all …]
H A Duserfunc.c72 int skip) in one_function_arg() argument
85 if (!skip) in one_function_arg()
148 if (!skip) in one_function_arg()
157 if (!skip) in one_function_arg()
185 int skip, in get_function_args() argument
231 if (!skip) in get_function_args()
250 if (!skip) in get_function_args()
293 if (!skip) in get_function_args()
327 if (!skip) in get_function_args()
3587 if (!skip) in trans_function_name()
[all …]
/vim-8.2.3635/runtime/pack/dist/opt/matchit/autoload/
H A Dmatchit.vim192 " Set skip.
200 let skip = s:ParseSkip(skip)
211 let skip = "0"
213 execute "if " . skip . "| let skip = '0' | endif"
648 let skip = s:ParseSkip(skip)
661 let skip = '0'
664 execute "if " . skip . "| let skip = '0' | endif"
744 let skip = a:str
745 if skip[1] == ":"
746 if skip[0] == "s"
[all …]

12345678910>>...18