Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Peter Gromov
Follow
New articles and posts
New articles, posts, and comments
Total activity
2256
Last activity
April 14, 2022 14:52
Member since
July 25, 2008 18:59
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
738
Activity overview
Articles (0)
Posts (3)
Comments (1515)
Sort by recent activity
Recent activity
Votes
Created
January 15, 2021 13:45
No, unfortunately that's complicated. One has to create a new live template that behaves just like the old one, and AFAIK there's no code doing that yet.
Community
IntelliJ IDEA Open API and Plugin Development
Advance Live Template programmatically
0 votes
Created
July 16, 2020 16:34
When your handler-delegate doesn't do anything, it should return "continue". If it did, then most likely "stop", but sometimes other results also make sense.
Community
IntelliJ IDEA Open API and Plugin Development
How to enable TextFieldWithAutoCompletion Enter key press
0 votes
Created
June 25, 2020 04:44
EnterHandlerDelegate's aren't invoked in single-line editors
Community
IntelliJ IDEA Open API and Plugin Development
How to enable TextFieldWithAutoCompletion Enter key press
0 votes
Created
June 19, 2020 16:17
Done
Community
IntelliJ IDEA Open API and Plugin Development
Sorting completions in provider
0 votes
Created
June 18, 2020 15:40
restartCompletionOnAnyPrefixChange indeed can help with the prefix. Affecting completion sorting per se seems to be covered by the API in multiple ways, but the case when you add new items based on...
Community
IntelliJ IDEA Open API and Plugin Development
Sorting completions in provider
0 votes
Created
June 18, 2020 12:50
Plugging in before JavaMemberName will indeed allow you to intercept all predefined variable name suggestions, but other contributors can still add their own suggestions to the same place. But I'm ...
Community
IntelliJ IDEA Open API and Plugin Development
Sorting completions in provider
0 votes
Created
June 18, 2020 10:01
Official comment
Hi, First, note that it's impossible to get the sorted results from a completion contributor, because 1) other contributors can add more items and 2) sorting is done on the UI thread where it depen...
Community
IntelliJ IDEA Open API and Plugin Development
Sorting completions in provider
0 votes
Created
May 25, 2020 14:49
It's a defect in the IDE, thanks for reporting! I've filed this as https://youtrack.jetbrains.com/issue/IDEA-241742 which you may follow.
Community
IntelliJ IDEA Open API and Plugin Development
"PSI invalidated outside transaction" message with stacktrace in idea.log on XmlTagValue.setValue call
0 votes
Created
January 20, 2020 05:25
(2) It looks like expected behavior: if completion limit was exceeded, then the list doesn't contain all items, so on typing new characters the missing items should be added to the list, since the ...
Community
IntelliJ IDEA Open API and Plugin Development
code completion issue (limit?, collapsing when typing)
0 votes
Created
December 11, 2019 10:57
@Smokeelow please try resolving to fake PSI elements with custom presentation as described above. That won't help with popup title (I don't think we have an API for that), but should help with its ...
Community
IntelliJ IDEA Open API and Plugin Development
GotoDeclarationHandler with multiple targets: How to change the rendering of found targets?
0 votes
1
2
3
4
5
6
›
»