Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Peter Gromov
Total activity
2258
Last activity
May 09, 2023 12:44
Member since
July 25, 2008 18:59
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
739
Activity overview
Articles (0)
Posts (3)
Comments (1516)
Sort by recent activity
Recent activity
Votes
Created
October 01, 2015 09:46
Then it's harder. But you probably still need to debug them (a condition breakpoint in RangeMarkerImpl should do it) and understand which IDEA's subsystems create them in such quantities.
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
October 05, 2015 11:40
Please provide a full stack trace of the error. If your plugin is working with IDEA 15, please put a breakpoint in PsiFileImpl#markInvalidated and provide the stack trace of the invalidation during...
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
October 06, 2015 14:40
By default, CachesBasedRefSearcher is used which requests (via p.getOptimizer().searchWord) search to be performed in UsageSearchContext.IN_CODE | UsageSearchContext.IN_FOREIGN_LANGUAGES | UsageSea...
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
April 27, 2015 11:34
Lexer rescans from a position where its getState returned the same as it was in the beginning (usually 0; see Lexer#start documentation). So if you see some strange relexing behavior, please ensure...
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
April 27, 2015 18:17
Token types are the same for XML and HTML. The language is usually determined by their parents, which are language-specific. For highlighter purposes, I'm afraid, you have to specify the language s...
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
April 27, 2015 18:26
I'm afraid not with LayeredLexerEditorHighlighter. Even in bare LexerEditorHighlighter there seems to be too little context for you to implement a non-trivial lexer selection algorithm.
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
May 13, 2015 10:57
There's no such thing as project type in IDEA. When creating a project, you can provide your own ModuleBuilder that allows you to give users a convenient UI to set up a project. When the project is...
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
May 20, 2015 18:36
What trick? There's nothing special about folding in such files.
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
May 20, 2015 20:22
If I understand the question correctly, what prevents you from just going up in the PSI hierarchy and stop whenever you encounter some stopping condition (e.g. a namespace)? PsiTreeUtil might be us...
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
Created
May 24, 2015 07:19
This looks like XML, where start and end tag names are to be renamed simultaneously. I don't remember exactly how it works, but you can debug in the area of XmlTag and TagNameReference and see it y...
Community
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 votes
«
First
‹
Previous
Next
›
Last
»