|
| 1 | +;; -*- mode: emacs-lisp -*- |
| 2 | +(("<?php" . php-php-tag) |
| 3 | + ("\n\n") |
| 4 | + ("function" . php-keyword) |
| 5 | + (" (") |
| 6 | + ("bool" . font-lock-type-face) |
| 7 | + (" ") |
| 8 | + ("$" . php-variable-sigil) |
| 9 | + ("args" . php-variable-name) |
| 10 | + (") {};\n") |
| 11 | + ("function" . php-keyword) |
| 12 | + (" (") |
| 13 | + ("boolean" . font-lock-type-face) |
| 14 | + (" ") |
| 15 | + ("$" . php-variable-sigil) |
| 16 | + ("args" . php-variable-name) |
| 17 | + (") {};\n") |
| 18 | + ("function" . php-keyword) |
| 19 | + (" (") |
| 20 | + ("int" . font-lock-type-face) |
| 21 | + (" ") |
| 22 | + ("$" . php-variable-sigil) |
| 23 | + ("args" . php-variable-name) |
| 24 | + (") {};\n") |
| 25 | + ("function" . php-keyword) |
| 26 | + (" (") |
| 27 | + ("integer" . font-lock-type-face) |
| 28 | + (" ") |
| 29 | + ("$" . php-variable-sigil) |
| 30 | + ("args" . php-variable-name) |
| 31 | + (") {};\n") |
| 32 | + ("function" . php-keyword) |
| 33 | + (" (") |
| 34 | + ("float" . font-lock-type-face) |
| 35 | + (" ") |
| 36 | + ("$" . php-variable-sigil) |
| 37 | + ("args" . php-variable-name) |
| 38 | + (") {};\n") |
| 39 | + ("function" . php-keyword) |
| 40 | + (" (") |
| 41 | + ("double" . font-lock-type-face) |
| 42 | + (" ") |
| 43 | + ("$" . php-variable-sigil) |
| 44 | + ("args" . php-variable-name) |
| 45 | + (") {};\n") |
| 46 | + ("function" . php-keyword) |
| 47 | + (" (") |
| 48 | + ("real" . font-lock-type-face) |
| 49 | + (" ") |
| 50 | + ("$" . php-variable-sigil) |
| 51 | + ("args" . php-variable-name) |
| 52 | + (") {};\n") |
| 53 | + ("function" . php-keyword) |
| 54 | + (" (") |
| 55 | + ("string" . font-lock-type-face) |
| 56 | + (" ") |
| 57 | + ("$" . php-variable-sigil) |
| 58 | + ("args" . php-variable-name) |
| 59 | + (") {};\n") |
| 60 | + ("function" . php-keyword) |
| 61 | + (" (") |
| 62 | + ("object" . font-lock-type-face) |
| 63 | + (" ") |
| 64 | + ("$" . php-variable-sigil) |
| 65 | + ("args" . php-variable-name) |
| 66 | + (") {};\n") |
| 67 | + ("function" . php-keyword) |
| 68 | + (" (") |
| 69 | + ("resource" . font-lock-type-face) |
| 70 | + (" ") |
| 71 | + ("$" . php-variable-sigil) |
| 72 | + ("args" . php-variable-name) |
| 73 | + (") {};\n")) |
0 commit comments