1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Add search aliases for ?:, ??, and ??=

This commit is contained in:
Sara Golemon
2021-05-19 21:26:06 +00:00
parent 7d6e63b616
commit cf6c402b48

View File

@@ -319,6 +319,9 @@ $uri_aliases = array (
"splat" => "functions.arguments",
"arrow" => "functions.arrow",
"fn" => "functions.arrow",
"?:" => "language.operators.comparison",
"??" => "language.operators.comparison",
"??=" => "language.operators.assignment",
"dowhile" => "control-structures.do.while",