disable HTML tag auto-closing inside JavaDoc inline tags (IDEA-66096)

This commit is contained in:
Dmitry Jemerov
2015-01-21 19:32:15 +01:00
parent d8129a2271
commit cb13dccb2e
4 changed files with 19 additions and 4 deletions
@@ -0,0 +1,2 @@
/** {@code <a<caret>} */
public class A {}
@@ -0,0 +1,2 @@
/** {@code <a>} */
public class A {}
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2014 JetBrains s.r.o.
* Copyright 2000-2015 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -28,6 +28,10 @@ public class JavadocTypedHandlerFunctionalTest extends LightPlatformCodeInsightT
doTest();
}
public void testCodeTag() {
doTest();
}
private void doTest() {
String testName = getTestName(true);
configureByFile(BASE_PATH + testName + ".java");