From cb35b86cd83e4529eb4a32efd8caa8419ee4965b Mon Sep 17 00:00:00 2001 From: esprimo Date: Sun, 7 Jun 2020 09:10:05 +0200 Subject: Add support for # as one-line comment for PHP See: https://www.php.net/manual/en/language.basic-syntax.comments.php --- plugins/language_php.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/language_php.lua b/plugins/language_php.lua index 55597d6..025077a 100644 --- a/plugins/language_php.lua +++ b/plugins/language_php.lua @@ -5,6 +5,7 @@ syntax.add { comment = "//", patterns = { { pattern = "//.-\n", type = "comment" }, + { pattern = "#.-\n", type = "comment" }, { pattern = { "/%*", "%*/" }, type = "comment" }, -- I dont know why the '//' are needed but I leave it here for now { pattern = { '"', '"', '\\' }, type = "string" }, -- cgit v1.2.3