Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Nikolay Chashnikov
Total activity
838
Last activity
November 23, 2023 11:52
Member since
November 13, 2007 10:36
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
334
Activity overview
Articles (0)
Posts (1)
Comments (503)
Sort by votes
Recent activity
Votes
Created
April 19, 2018 12:46
You need to create your own PluginBundle class, look at YAMLBundle (and its properties file) from yaml plugin for example.
Community
IntelliJ IDEA Open API and Plugin Development
Get I18n Properties from Intellij Resource Bundle
1 vote
Created
April 17, 2018 10:25
Only limited part of IntelliJ API is available inside Kotlin compiler, and the indices are not available indeed. It's better to ask your question at the Kotlin forum then.
Community
IntelliJ IDEA Open API and Plugin Development
How can I get all Kotlin file in a `Project`?
1 vote
Created
April 17, 2018 10:14
What kind of functionality you're going to implement by enumerating all Kotlin files in the project? Maybe there is a better way to do this.
Community
IntelliJ IDEA Open API and Plugin Development
How can I get all Kotlin file in a `Project`?
1 vote
Created
April 17, 2018 09:52
You can get it via FileTypeIndex.getFiles method. But note that there may be hundreds of thousands files in a project, so this call may cause performance and memory issues. Why do you need this?
Community
IntelliJ IDEA Open API and Plugin Development
How can I get all Kotlin file in a `Project`?
1 vote
Created
April 12, 2018 07:03
No, conditions aren't supported in plugin.xml file. However you can fix your case by replacing dependency on 'com.intellij.modules.java' by 'com.intellij.modules.idea'. The latter module is present...
Community
IntelliJ IDEA Open API and Plugin Development
if-else logic in plugin dependencies?
1 vote
Created
March 30, 2018 07:06
Build scripts for IntelliJ platfrom were refactored. See javadoc for org.jetbrains.intellij.build package for details.
Community
IntelliJ IDEA Open API and Plugin Development
Where is dist.gant?
1 vote
Created
March 15, 2018 06:34
There is no need to remove unneeded staff in the sources. Instead you can edit a build scripts to product a smaller IDE. The simplest way is editing IdeaCommunityProperties (and its super-class Bas...
Community
IntelliJ IDEA Open API and Plugin Development
How can I remove all java or python specific codes in an intellij-community release?
1 vote
Created
February 06, 2018 13:12
There is no xsd for files under .idea. It's hard to create such a scheme because many plugins including third-party ones contribute to the content of these files. It's better to consider format of ...
Community
IntelliJ IDEA Open API and Plugin Development
Detailed docs on .idea settings (aka Project Model)
1 vote
Created
January 26, 2018 07:11
You need to make sure that all the repositories use branches with the same name, if 'intellij-community' is on '171' branch, then 'android' and 'android/tools-base' are also need to be on '171' bra...
Community
IntelliJ IDEA Open API and Plugin Development
Issue Building Intellij Community Edition 2017.1 from CLI
1 vote
Created
January 15, 2018 07:13
Looks like the problem is caused by javac bug in an old build of JDK 1.8. Please make sure that '1.8' SDK in Project Structure refers to a modern build of JDK 8 (e.g. the latest 1.8.0_151).
Community
IntelliJ IDEA Open API and Plugin Development
Idea community source fails to build.
1 vote
«
First
‹
Previous
Next
›
Last
»