Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Imants Cekusins
Total activity
410
Last activity
June 25, 2024 06:27
Member since
July 30, 2015 11:35
Following
0 users
Followed by
0 users
Votes
15
Subscriptions
108
Activity overview
Posts (12)
Comments (275)
Sort by recent activity
Recent activity
Votes
Created
November 12, 2015 09:20
> folding does not allow the injected text to contain multiple linesThanos, you can adjust folded region to include multiple lines. You can also group folded regions.experiment with this FoldingDes...
Community
IntelliJ IDEA Open API and Plugin Development
Multiline folding/virtual text
0 votes
Created
November 09, 2015 17:39
Hello Gregor,I may misunderstand how bnf works but here is my view of it:Complex elements are usually named lowercaseComplex elements are defined in terms of 'leaves' which are named uppercase.Leav...
Community
IntelliJ IDEA Open API and Plugin Development
Language Plugin: Use specific rule as elementType
0 votes
Created
November 10, 2015 10:30
{ tokens = [ id = "regexp:\p{Alpha}\w*" ] } // [...] var_def ::= 'var' var_name var_name ::= idcould you post a link to the tutorial, please?
Community
IntelliJ IDEA Open API and Plugin Development
Language Plugin: Use specific rule as elementType
0 votes
Created
November 19, 2015 10:19
Hello Szymek,why not implement lang.foldingBuilder extension point?http://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/folding_builder.html
Community
IntelliJ IDEA Open API and Plugin Development
making <remove> .. </remove>-wrapped code look like a comment (JSF syntax coloring)
0 votes
Created
November 19, 2015 19:22
looks like PsiTreeUtil.getParentOfType returns PsiElement subclass: public static <T extends PsiElement> T getParentOfType(@Nullable PsiElement element, @NotNull Class<T> aClass) Are you using Psi...
Community
IntelliJ IDEA Open API and Plugin Development
How to convert a PsiElement to a PsiClass
0 votes
Created
November 20, 2015 09:16
yes, Osama, could you give some background / context as to what you are trying to do?I was trying to solve a problem which was not obvious to me.
Community
IntelliJ IDEA Open API and Plugin Development
How to convert a PsiElement to a PsiClass
0 votes
Created
November 16, 2015 08:15
Hello Ram,here is one way to do this: static void formatted(Editor editor, String html, String title) { JBPopupFactory factory = JBPopupFactory.getInstance(); BalloonBuilder builder = ...
Community
IntelliJ IDEA Open API and Plugin Development
How to render/format output from IDEA plugin
0 votes
Created
November 18, 2015 19:45
here is how you could set height & width: static void formatted(Editor editor, String html, String title, Rectangle bounds) { JBPopupFactory factory = JBPopupFactory.getInstance(); B...
Community
IntelliJ IDEA Open API and Plugin Development
How to render/format output from IDEA plugin
0 votes
Created
November 19, 2015 00:49
Ram, are you passing valid HTML?wrapped in tags, styled etc?I just checked: the popup window size auto adjusts to the content.
Community
IntelliJ IDEA Open API and Plugin Development
How to render/format output from IDEA plugin
0 votes
Created
December 27, 2015 14:10
Thank you for the tip! I ran into this same error.some error message actually gave a tip to use doPostponedOperationsAndUnblockDocument:PsiDocumentManager.getInstance(project).doPostponedOpera...
Community
IntelliJ IDEA Open API and Plugin Development
Attempt to modify PSI for non-committed Document!
0 votes
«
First
‹
Previous
Next
›
Last
»