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 4cfd2a7 commit 3bcb4b5Copy full SHA for 3bcb4b5
src/main/kotlin/org/domaframework/doma/intellij/common/psi/PsiPatternUtil.kt
@@ -51,6 +51,7 @@ object PsiPatternUtil {
51
val inComment = PsiTreeUtil.getParentOfType(element, parentClass, true) != null
52
if (inComment) return true
53
54
+ // Even incomplete elements during input are analyzed as strings and included in the code completion process within block comments.
55
var prevElement = PsiTreeUtil.prevLeaf(element, true)
56
while (prevElement != null &&
57
!(
0 commit comments