We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0dafaf commit 7328fbbCopy full SHA for 7328fbb
src/main/java/fr/adrienbrault/idea/symfony2plugin/expressionLanguage/ExpressionLanguageQuoteHandler.java
@@ -0,0 +1,13 @@
1
+package fr.adrienbrault.idea.symfony2plugin.expressionLanguage;
2
+
3
+import com.intellij.codeInsight.editorActions.SimpleTokenSetQuoteHandler;
4
+import com.intellij.psi.TokenType;
5
+import fr.adrienbrault.idea.symfony2plugin.expressionLanguage.psi.ExpressionLanguageTypes;
6
7
+public class ExpressionLanguageQuoteHandler extends SimpleTokenSetQuoteHandler {
8
9
+ public ExpressionLanguageQuoteHandler() {
10
+ super(ExpressionLanguageTypes.STRING, TokenType.BAD_CHARACTER);
11
+ }
12
13
+}
0 commit comments