From d5a8ffc03279bbb1f464dc49f718f8bf252c31f2 Mon Sep 17 00:00:00 2001 From: ranolfi Date: Fri, 4 May 2018 05:39:28 -0300 Subject: [PATCH] Automatic wrapping with `` (backticks) for PHP Related to #49188 --- extensions/php/language-configuration.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/php/language-configuration.json b/extensions/php/language-configuration.json index 8172fcd09e5..2eb11e31045 100644 --- a/extensions/php/language-configuration.json +++ b/extensions/php/language-configuration.json @@ -21,7 +21,8 @@ ["[", "]"], ["(", ")"], ["'", "'"], - ["\"", "\""] + ["\"", "\""], + ["`", "`"] ], "indentationRules": { "increaseIndentPattern": "({(?!.+}).*|\\(|\\[|((else(\\s)?)?if|else|for(each)?|while|switch).*:)\\s*(/[/*].*)?$",