Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Roman Golyshev
Total activity
12
Last activity
August 21, 2024 13:17
Member since
September 03, 2020 13:16
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
5
Activity overview
Articles (0)
Posts (0)
Comments (7)
Roman Golyshev
commented,
August 21, 2024 13:17
Zarmour hi! Currently, there is no way to influence the “Safe plugins” list from the outside.However, as king s said above, you can go on and see if your plugin is already included there 🙏
Community
IntelliJ IDEA Open API and Plugin Development
How to comfortable with K2 compile
0 votes
Roman Golyshev
commented,
August 08, 2024 11:43
Hi!Unfortunately, at the moment, there is no explicit API to mark the particular IDE plugin as compatible with K2 Mode. If your plugin depends on Kotlin Plugin and is not in the “Safe plugins” list...
Community
IntelliJ IDEA Open API and Plugin Development
How to comfortable with K2 compile
0 votes
Roman Golyshev
commented,
April 22, 2021 08:08
ShortenReferences.DEFAULT.process(KtTypeReference(typeRefNode)) This will most probably not workYou need to have your PSI in the place where it can be actually shortened - a full file with list of ...
Community
IntelliJ IDEA Open API and Plugin Development
How to add import for my class with Kotlin ?
0 votes
Roman Golyshev
commented,
April 20, 2021 10:20
David Smith hi! Can you please share how did you use ShortenReferences class? It should work in the case that you've described
Community
IntelliJ IDEA Open API and Plugin Development
How to add import for my class with Kotlin ?
0 votes
Roman Golyshev
commented,
March 29, 2021 12:17
Hi Abaklan88! Sorry for the late response; I hope that the answers will still be relevant. JavaCodeStyleManager.shortenClassReferences(ktParam) does nothing It is intended behavior; we have our...
Community
IntelliJ IDEA Open API and Plugin Development
Add new parameter into kotlin data class from IDEA plugin
0 votes
Roman Golyshev
commented,
November 14, 2020 09:04
Note: In gradle.kts scripts it is possible to call `setPlugins` twice; however, it seems that only the last call is going to take effect. So, instead of writing: intellij { ... setPlugins("j...
Community
IntelliJ IDEA Open API and Plugin Development
Kotlin doesn't import java dependencies 2019.3
0 votes
Roman Golyshev
commented,
September 03, 2020 13:16
Can you please try and use order="first, before KotlinCompletionContributor" for your completion contributor in your 'plugin.xml' configuration?
Community
IntelliJ IDEA Open API and Plugin Development
Kotlin auto-complete
0 votes