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
October 17, 2015 07:52
Hello,in RESOLVECompletionContributoryou call extend .withElementType(ResTypes.IDENTIFIER)ResTypes.IDENTIFIER is only 1 element type, right?I'd try this:change RESOLVECompletionContributor so that ...
Community
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 votes
Created
October 17, 2015 12:58
well it appears that the reason completion is not triggered is : some element type does not trigger completion, when it should.I suggest to Capture additional element types.let's say, your symbol i...
Community
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 votes
Created
October 17, 2015 15:47
well if it works, this is all that matters ;)I do not understand bnf well. Particularly, what is this "identifier" thingy. in this example:http://cui.unige.ch/db-research/Enseignement/analyseinfo/A...
Community
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 votes
Created
October 17, 2015 16:17
if this "identifier" were derived type (defined in other terms), I would run "extend" with each base type.e.g.1) private static PsiElementPattern.Capture<PsiElement> usesSpec() { return psiE...
Community
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 votes
Created
November 14, 2015 08:37
> .. It worksThat's what matters. Well done.
Community
IntelliJ IDEA Open API and Plugin Development
How to Highlight one line in EditorTextField
0 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
«
First
‹
Previous
Next
›
Last
»