1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
;; -*- mode: emacs-lisp -*-
(("<?php" . php-php-tag)
(" ")
("declare" . php-keyword)
("(")
("strict_types" . php-keyword)
("=" . php-assignment-op)
("1); ")
("?>" . php-php-tag)
("\n")
("/** GitHub Issue: " . font-lock-doc-face)
("https://github.com/emacs-php/php-mode/issues/443" link font-lock-doc-face)
(" */" . font-lock-doc-face)
("\n")
("<?xml" . php-php-tag)
(" version")
("=" . php-assignment-op)
("\"1.0\"" . php-string)
(" ")
("encoding" . php-keyword)
("=" . php-assignment-op)
("\"UTF-8\"" . php-string)
("?>" . php-php-tag)
("\n")
("<?hh" . php-php-tag)
(" ")
("echo" . php-keyword)
(" ")
("\"Hack open tag\"" . php-string)
(" ")
("?>" . php-php-tag)
("\n")
("<?" . php-php-tag)
(" ")
("echo" . php-keyword)
(" ")
("\"obsolete short open tag\"" . php-string)
(" ")
("?>" . php-php-tag)
("\n")
("<%" . php-php-tag)
(" ")
("echo" . php-keyword)
(" ")
("\"obsolete ASP tags\"" . php-string)
(" ")
("%>" . php-php-tag)
("\n")
("<?=" . php-php-tag)
(" ")
("\"foo\"" . php-string)
(" ")
("?>" . php-php-tag)
("\n")
("<?=" . php-php-tag)
(" 1 ")
("+" . php-arithmetic-op)
(" 1 ")
("?>" . php-php-tag)
("\n")
("<?php" . php-php-tag)
(" ")
("/* " . font-lock-comment-delimiter-face)
("Foo" . font-lock-comment-face)
(" */" . font-lock-comment-delimiter-face)
(" ")
("echo" . php-keyword)
(" ")
("\"Bar\"" . php-string)
("; ")
("?>" . php-php-tag)
("\n")
("<?php" . php-php-tag)
("/* " . font-lock-comment-delimiter-face)
("Foo" . font-lock-comment-face)
(" */" . font-lock-comment-delimiter-face)
(" ")
("echo" . php-keyword)
(" ")
("\"Bar\"" . php-string)
("; ")
("?>" . php-php-tag)
("\n"))
|