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
September 16, 2015 16:06
found the source of my woes.I omitted these two lines: ... final PsiBuilder.Marker rootMarker = builder.mark(); ... rootMarker.done(root); ...from this example:https://upsource.jetbra...
Community
IntelliJ IDEA Open API and Plugin Development
PsiParser - complex element
0 votes
Created
September 14, 2015 10:10
Hello Lars,multiple RenameHandler's can be defined. Custom handlers are iterated until in one of them public final boolean isAvailableOnDataContext(final DataContext dataContext) returns true. If n...
Community
IntelliJ IDEA Open API and Plugin Development
Prevent rename refactoring
0 votes
Created
September 15, 2015 10:27
you are welcome.I had written that reply before I saw Dmitry's message.ah well, 2 answers are better than no answer ;) Someone else might need to tweak rename. That reply could give them some ideas.
Community
IntelliJ IDEA Open API and Plugin Development
Prevent rename refactoring
0 votes
Created
October 08, 2015 19:52
heyain your file definition (which extends PsiFileBase) add this method:@Overridepublic Icon getIcon(int flags) {if(pathOk()) // you need to add this custom method. return super.getIcon(flag...
Community
IntelliJ IDEA Open API and Plugin Development
Annotate files based on filenames
0 votes
Created
September 21, 2015 13:29
does 2.2 cover this:http://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/language_and_filetype.html?
Community
IntelliJ IDEA Open API and Plugin Development
How to access image resources bundle with IntelliJ IDE
0 votes
Created
September 24, 2015 23:44
Hi Saleeh,You could define both languages in one bnf file.just make sure the lexer can figure out, which elements belong to which language, and return the appropriate element type.If bnf is defined...
Community
IntelliJ IDEA Open API and Plugin Development
Extending syntax checking
0 votes
Created
September 24, 2015 23:49
Irina,Saleeh needs to mix languages in one file type. This is common in some frameworks e.g. MVC: Html and C#.Net. Or Html and JavaScriptThis mixed code -if valid- should not throw errors.
Community
IntelliJ IDEA Open API and Plugin Development
Extending syntax checking
0 votes
Created
September 25, 2015 13:46
it is probably possible.these files may be relevant:JavaLexer:https://github.com/JetBrains/intellij-community/blob/a5cd6ac6102731ea9b557dcc1c684340f7d8432a/java/java-psi-impl/src/com/intellij/lang/...
Community
IntelliJ IDEA Open API and Plugin Development
Extending syntax checking
0 votes
Created
October 30, 2015 16:12
try this:disable as many plugins as possible - leave only the most essentialdisable other plugins which work on the same file extensioninvalidate caches & restart ideaopen plugin projectrebuild pl...
Community
IntelliJ IDEA Open API and Plugin Development
Trouble deploying plugin - works in sandbox but not when I manually build/install
0 votes
Created
October 30, 2015 16:44
maybe try this:uninstall your pluginopen plugin projectset breakpoint on any exception (maybe set class filter if you can narrow it down to any classes)run the plugin in debug mode
Community
IntelliJ IDEA Open API and Plugin Development
Trouble deploying plugin - works in sandbox but not when I manually build/install
0 votes
«
First
‹
Previous
Next
›
Last
»