Extend max content-length in com.intellij.ui.LanguageTextField
I am using a com.intellij.ui.LanguageTextField to show a formatted JSON. Now I have realized that it is showing only a certain amount of characters (depending on the whitespaces and newlines something between 1000 and 1500 chars). If the text is longer, it gets trimmed at the end.
Is there a way to increase the max number of characters, so that I can show the whole JSON?
Please sign in to leave a comment.
LanguageTextField does not have any restriction on the number of characters displayed. The text is truncated somewhere in your code.
Sorry, you are right, I found the problem.
Thank you anyway.