Lines Matching refs:display

65 syn match rakuIdentifier display "\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0-\…
146 syn match rakuKeywordStart display "\%(\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\…
153 …exec "syn match ". s:group ." display \"[.^]\\@1<!\\%(". s:words . "\\)(\\@!\\%([A-Za-z_\\xC0-\\xF…
159 exec "syn match rakuType display \"\\%(". s:words . "\\)\\%([A-Za-z_\\xC0-\\xFF0-9]\\|[-'][A-Za-z_\…
162 syn match rakuPreDeclare display "[.^]\@1<!\<\%(multi\|proto\|only\)\>" nextgroup=rakuDeclare,rakuI…
163 syn match rakuDeclare display "[.^]\@1<!\<\%(macro\|sub\|submethod\|method\|module\|class\|role\|pa…
164 syn match rakuDeclareRegex display "[.^]\@1<!\<\%(regex\|rule\|token\)\>" nextgroup=rakuRegexName s…
166 syn match rakuTypeConstraint display "\%([.^]\|^\s*\)\@<!\a\@=\%(does\|as\|but\|trusts\|of\|return…
167 syn match rakuTypeConstraint display "\%([.^]\|^\s*\)\@<![A-Za-z_\xC0-\xFF0-9]\@1<!\%([A-Za-z_\xC0…
168 syn match rakuProperty display "\a\@=\%(signature\|context\|also\|shape\|prec\|irs\|ofs\|ors…
171 syn match rakuIdentifier display "\%(::\)\@2<=\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A…
172 syn match rakuIdentifier display "\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0-\…
175 syn match rakuPackageTwigil display "\%(::\)\@2<=\*"
178 syn match rakuType display "\%(::\)\@2<!\%(SeekType\%(::SeekFromBeginning\|::SeekFromCurrent\|::See…
183 syn match rakuOperator display "[-+/*~?|=^!%&,<>».;\\∈∉∋∌∩∪≼≽⊂⊃⊄⊅⊆⊇⊈⊉⊍⊎⊖∅∘]"
184 syn match rakuOperator display "\%(:\@1<!::\@2!\|::=\|\.::\)"
186 syn match rakuOperator display "\%(\s\|^\)\@1<=\%(xx=\)"
188 syn match rakuOperator display "\%(&\.(\@=\|@\.\[\@=\|%\.{\@=\)"
191 syn match rakuReduceOp display "\%(^\|\s\|(\)\@1<=!*\%([RSXZ\[]\)*[&RSXZ]\?\[\+(\?\%(\d\|[@%$][.?^=…
192 syn match rakuSetOp display "R\?(\%([-^.+|&]\|[<>][=+]\?\|cont\|elem\))"
195 exec "syn match rakuRSXZOp display \"[RSXZ]:\\@!\\%(\\a\\@=\\%(". s:alpha_metaops_or . "\\)\\>\\|[[…
197 syn match rakuBlockLabel display "^\s*\zs\h\w*\s*::\@!\_s\@="
199 syn match rakuNumber display "[A-Za-z_\xC0-\xFF0-9]\@1<!\%(\%(\%(\_^\|\s\|[^*\a]\)\@1<=[-+]\)\?…
200 syn match rakuNumber display "[A-Za-z_\xC0-\xFF0-9]\@1<!\%(\%(\_^\|\s\|[^*\a]\)\@1<=[-+]\)\?\%(…
201 syn match rakuNumber display "[A-Za-z_\xC0-\xFF0-9]\@1<!\%(\%(\_^\|\s\|[^*\a]\)\@1<=[-+]\)\?0[o…
202 syn match rakuOctBase display "o" contained nextgroup=rakuOctNumber
203 syn match rakuBinBase display "b" contained nextgroup=rakuBinNumber
204 syn match rakuHexBase display "x" contained nextgroup=rakuHexNumber
205 syn match rakuDecBase display "d" contained nextgroup=rakuDecNumber
206 syn match rakuOctNumber display "[0-7][0-7_]*" contained
207 syn match rakuBinNumber display "[01][01_]*" contained
208 syn match rakuHexNumber display "\x[[:xdigit:]_]*" contained
209 syn match rakuDecNumber display "\d[[:digit:]_]*" contained
211 syn match rakuVersion display "\<v\d\+\%(\.\%(\*\|\d\+\)\)*+\?"
214 syn match rakuContext display "\<\%(item\|list\|slice\|hash\)\>"
215 syn match rakuContext display "\%(\$\|@\|%\|&\)(\@="
323 syn match rakuEscape display "\\\S" contained
326 syn match rakuEscQuote display "\\'" contained
327 syn match rakuEscDoubleQuote display "\\\"" contained
328 syn match rakuEscCloseAngle display "\\>" contained
329 syn match rakuEscCloseFrench display "\\»" contained
330 syn match rakuEscBackTick display "\\`" contained
331 syn match rakuEscForwardSlash display "\\/" contained
332 syn match rakuEscVerticalBar display "\\|" contained
333 syn match rakuEscExclamation display "\\!" contained
334 syn match rakuEscComma display "\\," contained
335 syn match rakuEscDollar display "\\\$" contained
336 syn match rakuEscCloseCurly display "\\}" contained
337 syn match rakuEscCloseBracket display "\\\]" contained
431 syn match rakuHyperOp display #[^[:digit:][{('",:[:space:]][^[{('",:[:space:]]*\%(«\|<<\)#
432 syn match rakuHyperOp display "«\%(\d\|[@%$][.?^=[:alpha:]]\)\@!\%(\.\|[^[{('".[:space:]]\)\+[«»]"
433 syn match rakuHyperOp display "»\%(\d\|[@%$][.?^=[:alpha:]]\)\@!\%(\.\|[^[{('".[:space:]]\)\+\%(«\|…
434 syn match rakuHyperOp display "<<\%(\d\|[@%$][.?^=[:alpha:]]\)\@!\%(\.\|[^[{('".[:space:]]\)\+\%(<<…
435 syn match rakuHyperOp display ">>\%(\d\|[@%$][.?^=[:alpha:]]\)\@!\%(\.\|[^[{('".[:space:]]\)\+\%(<<…
457 syn match rakuQuoteQStart display "\%(:\|\%(sub\|role\)\s\)\@5<![Qq]\@=" nextgroup=rakuQuoteQ,rakuQ…
458 syn match rakuQuoteQ display "Q\%(qq\|ww\|[abcfhpsqvwx]\)\?[A-Za-z(]\@!" nextgroup=rakuPairsQ …
459 syn match rakuQuoteQ_q display "q[abcfhpsvwx]\?[A-Za-z(]\@!" nextgroup=rakuPairsQ_q skipwhite sk…
460 syn match rakuQuoteQ_qww display "qww[A-Za-z(]\@!" nextgroup=rakuPairsQ_qww skipwhite skipempty co…
461 syn match rakuQuoteQ_qq display "qq\%([pwx]\|ww\)\?[A-Za-z(]\@!" nextgroup=rakuPairsQ_qq skipwhit…
462 syn match rakuQuoteQ_to display "Qto[A-Za-z(]\@!" nextgroup=rakuStringQ_to skipwhite skipempty co…
463 syn match rakuQuoteQ_qto display "qto[A-Za-z(]\@!" nextgroup=rakuStringQ_qto skipwhite skipempty c…
464 syn match rakuQuoteQ_qqto display "qqto[A-Za-z(]\@!" nextgroup=rakuStringQ_qqto skipwhite skipempty…
465 syn match rakuQuoteQ_qto display "q\_s*\%(\%(\_s*:!\?\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]…
466 syn match rakuQuoteQ_qqto display "qq\_s*\%(\%(\_s*:!\?\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9…
477 …syn match rakuQuote_QPIR display "Q[A-Za-z(]\@!\%(\_s*:PIR\)\@=" nextgroup=rakuPairsQ_PIR skipwhit…
517 syn match rakuOperator display ":\@1<!::\@!!\?" nextgroup=rakuKey,rakuStringAngleFixed,rakuStringAn…
518 syn match rakuKey display "\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0-\xFF]\@=…
522 syn match rakuRegexName display "\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0…
559 syn match rakuRxMeta display contained ".\%([A-Za-z_\xC0-\xFF0-9]\|\s\)\@1<!"
560 syn match rakuRxAnchor display contained "[$^]"
561 syn match rakuRxEscape display contained "\\\S"
562 syn match rakuRxCapture display contained "[()]"
563 syn match rakuRxAlternation display contained "|"
564 syn match rakuRxRange display contained "\.\."
567 syn match rakuEscOctOld display "\\[1-9]\d\{1,2}" contained
568 syn match rakuEscNull display "\\0\d\@!" contained
569 syn match rakuEscCodePoint display "\\[cC]" contained nextgroup=rakuCodePoint
570 syn match rakuEscHex display "\\[xX]" contained nextgroup=rakuHexSequence
571 syn match rakuEscOct display "\\o" contained nextgroup=rakuOctSequence
572 syn match rakuEscQQ display "\\qq" contained nextgroup=rakuQQSequence
573 syn match rakuEscOpenCurly display "\\{" contained
574 syn match rakuEscHash display "\\#" contained
575 syn match rakuEscBackSlash display "\\\\" contained
585 syn match rakuCodePoint display "\%(\d\+\|\S\)" contained
592 syn match rakuHexSequence display "\x\+" contained
599 syn match rakuOctSequence display "\o\+" contained
644 syn match rakuRxAssertCall display "\%(::\|\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za…
655 syn match rakuRxBoundary display contained "\%([«»]\|<<\|>>\)"
716 syn match rakuBareSigil display "[@$%&]\%(\s*\%([,)}=]\|where\>\)\)\@="
717 syn match rakuVarSlash display "\$/"
718 syn match rakuVarExclam display "\$!"
719 syn match rakuVarMatch display "\$¢"
720 syn match rakuVarNum display "\$\d\+"
721 syn match rakuVariable display "self"
722 syn match rakuVariable display "[@$%&]\?[@&$%]\$*\%(::\|\%(\%([.^*?=!~]\|:\@1<!::\@!\)[A-Za-z_\…
723 syn match rakuVarName display "\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0…
724 syn match rakuClose display "[\])]" transparent nextgroup=rakuPostHyperOp
725 syn match rakuPostHyperOp display "\%(»\|>>\)" contained
726 syn match rakuTwigil display "\%([.^*?=!~]\|:\@1<!::\@!\)[A-Za-z_\xC0-\xFF]\@=" nextgroup=rak…
727 syn match rakuPackageScope display "\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0…
731 syn match rakuMatchStart_m display "\.\@1<!\<\%(mm\?\|rx\)\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_…
732 syn match rakuMatchStart_s display "\.\@1<!\<[sS]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0-\xFF…
733 syn match rakuMatchStart_tr display "\.\@1<!\<tr\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za-z_\xC0-\xFF]\…
848 syn match rakuRxP5Escape display contained "\\\S"
849 syn match rakuRxP5CodePoint display contained "\\c\S\@=" nextgroup=rakuRxP5CPId
850 syn match rakuRxP5CPId display contained "\S"
851 syn match rakuRxP5Oct display contained "\\\%(\o\{1,3}\)\@=" nextgroup=rakuRxP5OctSeq
852 syn match rakuRxP5OctSeq display contained "\o\{1,3}"
853 syn match rakuRxP5Anchor display contained "[\^$]"
854 syn match rakuRxP5Hex display contained "\\x\%({\x\+}\|\x\{1,2}\)\@=" nextgroup=rakuRxP5HexS…
855 syn match rakuRxP5HexSeq display contained "\x\{1,2}"
866 syn match rakuRxP5Quantifier display contained "\%([+*]\|(\@1<!?\)"
867 syn match rakuRxP5ReadRef display contained "\\[1-9]\d\@!"
868 syn match rakuRxP5ReadRef display contained "\[A-Za-z_\xC0-\xFF0-9]<\@=" nextgroup=rakuRxP5ReadR…
874 syn match rakuRxP5WriteRef display contained "\\g\%(\d\|{\)\@=" nextgroup=rakuRxP5WriteRefId
875 syn match rakuRxP5WriteRefId display contained "\d\+"
881 syn match rakuRxP5Prop display contained "\\[pP]\%(\a\|{\)\@=" nextgroup=rakuRxP5PropId
882 syn match rakuRxP5PropId display contained "\a"
888 syn match rakuRxP5Meta display contained "[(|).]"
889 syn match rakuRxP5ParenMod display contained "(\@1<=?\@=" nextgroup=rakuRxP5Mod,rakuRxP5ModName,r…
890 syn match rakuRxP5Mod display contained "?\%(<\?=\|<\?!\|[#:|]\)"
891 syn match rakuRxP5Mod display contained "?-\?[impsx]\+"
892 syn match rakuRxP5Mod display contained "?\%([-+]\?\d\+\|R\)"
893 syn match rakuRxP5Mod display contained "?(DEFINE)"
894 syn match rakuRxP5Mod display contained "?\%(&\|P[>=]\)" nextgroup=rakuRxP5ModDef
895 syn match rakuRxP5ModDef display contained "\h\w*"
912 syn match rakuRxP5EscMeta display contained "\\[?*.{}()[\]|\^$]"
913 syn match rakuRxP5Count display contained "\%({\d\+\%(,\%(\d\+\)\?\)\?}\)\@=" nextgroup=rakuRx…
919 syn match rakuRxP5Verb display contained "(\@1<=\*\%(\%(PRUNE\|SKIP\|THEN\)\%(:[^)]*\)\?\|\%(…
938 syn match rakuRxP5Range display contained "-"
1008 syn match rakuAttention display "\<\%(ACHTUNG\|ATTN\|ATTENTION\|FIXME\|NB\|TODO\|TBD\|WTF\|XXX\|NOT…
1011 syn match rakuComment display "#.*" contains=rakuAttention
1107 syn match rakuShebang display "\%^#!.*"
1110 syn match rakuStringAuto display "\.\@1<!\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za…
1111 syn match rakuStringAuto display "\.\@1<!\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za…
1112 syn match rakuStringAuto display "\.\@1<!\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[-'][A-Za…
1447 syn match rakuPodAutoQuote display contained "=>"
1448 syn match rakuPodConfigOperator display contained ":!\?" nextgroup=rakuPodConfigOption
1449 syn match rakuPodConfigOption display contained "[^[:space:](<]\+" nextgroup=rakuPodParens,rakuSt…
1450 syn match rakuPodExtraConfig display contained "^="
1451 syn match rakuPodVerticalBar display contained "|"
1452 syn match rakuPodColon display contained ":"
1453 syn match rakuPodSemicolon display contained ";"
1454 syn match rakuPodComma display contained ","
1455 syn match rakuPodImplicitCode display contained "^\s.*"
1456 syn match rakuPodType display contained "\%([A-Za-z_\xC0-\xFF]\%([A-Za-z_\xC0-\xFF0-9]\|[…