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 24, 2015 08:44
I did not try this but it could work: <extensions defaultExtensionNs="com.intellij"> <bundledColorScheme path="colors/ChroMATERIAL.icls" > </extensions>
Community
IntelliJ IDEA Open API and Plugin Development
I created a custom color scheme, now I want to make it a plug-in. Harder than expected
0 votes
Created
September 06, 2015 19:47
Thank you Dmitry. I appreciate this.
Community
IntelliJ IDEA Open API and Plugin Development
Quick Definition
0 votes
Created
October 08, 2015 19:41
heya,in canFindUsages you could test PsiElement type by comparing it against TokenSet defined in your language IElementType type = PsiElement.getNode().getElementType();TokenSet.create(list all yo...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with adding additional usages to the results of the standard "Find Usages" operation
0 votes
Created
October 09, 2015 09:00
> it will never return true.... for java methods, so other handlers will be tried - including java one.if it returns true for your symbols, default handlers will not be tried.or so it seems.
Community
IntelliJ IDEA Open API and Plugin Development
Problem with adding additional usages to the results of the standard "Find Usages" operation
0 votes
Created
October 16, 2015 18:12
> both my custom handler and the java handler for java methods.does your handler find additional usages for java symbols, and you'd like both handlers (custom & default java find usage handler) to ...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with adding additional usages to the results of the standard "Find Usages" operation
0 votes
Created
October 19, 2015 07:42
I'd try this: CustomFindUsagesHandler extends JavaFindUsagesHandler @Overridepublic PsiElement[] getPrimaryElements() {...} @Overridepublic PsiElement[] getSecondaryElements() {...} @Overridepu...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with adding additional usages to the results of the standard "Find Usages" operation
0 votes
Created
October 18, 2015 18:03
you could try to add a global library:https://github.com/JetBrains/intellij-community/blob/210e0ed138627926e10094bb9c76026319cec178/platform/lang-impl/src/com/intellij/util/ui/classpath/SimpleClass...
Community
IntelliJ IDEA Open API and Plugin Development
Accessing the Libraries of a Project
0 votes
Created
October 17, 2015 08:33
this may help:https://github.com/JetBrains/intellij-community/blob/210e0ed138627926e10094bb9c76026319cec178/platform/lang-api/src/com/intellij/codeInsight/completion/CompletionContributor.java#L108...
Community
IntelliJ IDEA Open API and Plugin Development
How can I define a completion sorter?
0 votes
Created
October 17, 2015 15:07
could you update git with the most recent .bnf and completion files, please?
Community
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 votes
Created
October 17, 2015 15:20
can you autogen psi from this bnf?identifier does not seem to be defined anywhere, no? I mean, like this:identifier ::= ...
Community
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 votes
«
First
‹
Previous
Next
›
Last
»