We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2088ea6 commit f1c3d72Copy full SHA for f1c3d72
emacs/bracery-mode.el
@@ -32,9 +32,10 @@
32
("&~?[A-Za-z0-9_]+{[^}]*}{[^}]*}" . font-lock-function-name-face)
33
("&~?[A-Za-z0-9_]+{[^}]*}" . font-lock-function-name-face)
34
("#\\([A-Za-z0-9_]+\\)#" 1 'italic t)
35
- ("~[~\\*]?\\([A-Za-z0-9_]+\\)" 1 'italic t)
36
- ("~{\\([A-Za-z0-9_]+\\)}" 1 'italic t)
37
- ("~[~\\*]\\([A-Za-z0-9_]+\\)" 1 'bold-italic t)
+ ("\\(~[~\\*]?[A-Za-z0-9_]+\\)" 1 'italic t)
+ ("\\(~{[A-Za-z0-9_]+\\)}" 1 'italic t)
+ ("\\(~[~\\*][A-Za-z0-9_]+\\)" 1 'bold-italic t)
38
+ ("#[#\*][A-Za-z0-9_]+" . font-lock-type-face) ;; ##TAG or #*TAG
39
("=[^{ ]+" . font-lock-type-face)
40
("={.*}" . font-lock-type-face)
41
(":=[^{ ]+" . font-lock-type-face)
0 commit comments