|
| 1 | +;; -*- mode: emacs-lisp -*- |
| 2 | +(("<?php" . font-lock-preprocessor-face) |
| 3 | + ("\n\n") |
| 4 | + ("/**\n * GitHub Issue: " . font-lock-doc-face) |
| 5 | + ("https://github.com/ejmr/php-mode/issues/439" link font-lock-doc-face) |
| 6 | + ("\n */" . font-lock-doc-face) |
| 7 | + ("\n\n") |
| 8 | + ("$" . php-variable-sigil) |
| 9 | + ("a" . php-variable-name) |
| 10 | + (" = ") |
| 11 | + ("<<<ABC\nLet'go Justin\nABC" . php-string) |
| 12 | + (";\n\n") |
| 13 | + ("$" . php-variable-sigil) |
| 14 | + ("b" . php-variable-name) |
| 15 | + (" = ") |
| 16 | + ("<<<A_B_C\nLet'go Justin\nA_B_C" . php-string) |
| 17 | + (";\n\n") |
| 18 | + ("$" . php-variable-sigil) |
| 19 | + ("c" . php-variable-name) |
| 20 | + (" = ") |
| 21 | + ("<<<'A_B_C'\nLet'go Justin\nA_B_C" . php-string) |
| 22 | + (";\n\n") |
| 23 | + ("$" . php-variable-sigil) |
| 24 | + ("d" . php-variable-name) |
| 25 | + (" = ") |
| 26 | + ("<<<\"A_B_C\"\nLet'go Justin\nA_B_C" . php-string) |
| 27 | + (";\n\n") |
| 28 | + ("$" . php-variable-sigil) |
| 29 | + ("e" . php-variable-name) |
| 30 | + (" = ") |
| 31 | + ("<<<いろは\nLet'go Justin\nいろは" . php-string) |
| 32 | + (";\n\n") |
| 33 | + ("$" . php-variable-sigil) |
| 34 | + ("f" . php-variable-name) |
| 35 | + (" = ") |
| 36 | + ("<<<'いろは'\nLet'go Justin\nいろは" . php-string) |
| 37 | + (";\n\n") |
| 38 | + ("$" . php-variable-sigil) |
| 39 | + ("g" . php-variable-name) |
| 40 | + (" = ") |
| 41 | + ("<<<\"いろは\"\nLet'go Justin\nいろは" . php-string) |
| 42 | + (";\n")) |
0 commit comments