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
March 28, 2017 10:54
> The error describes the only the latest lsource that was used for resolving base.jar, if the jar was there, the dependency would be resolved earlier. the error appeared before a dep to local jar ...
Community
IntelliJ IDEA Open API and Plugin Development
Gradle config for plugin
0 votes
Created
March 28, 2017 10:26
> There is no any sense to depend on `gradle-intellij-plugin` thank you. I will remove this dep. the error in the original post in this topic appeared with different build.gradle files. the ja...
Community
IntelliJ IDEA Open API and Plugin Development
Gradle config for plugin
0 votes
Created
March 28, 2017 09:58
complete build.gradle files for both Base and Plugin are here they seem to work.
Community
IntelliJ IDEA Open API and Plugin Development
Gradle config for plugin
0 votes
Created
March 27, 2017 22:55
Plugin project build.gradle can refer to Base jar like this: dependencies { compile files('libs/base-1.0.jar')}
Community
IntelliJ IDEA Open API and Plugin Development
Gradle config for plugin
0 votes
Created
January 02, 2017 08:05
you could implement liveTemplateContext extension point..
Community
IntelliJ IDEA Open API and Plugin Development
Turn off auto-select completion element when inside LiveTemplate
0 votes
Created
October 07, 2016 13:04
this should work: <projectService id="serviceA" serviceInterface="IServiceA" serviceImplementation="ServiceA"/>ServiceA imp = ServiceManager.getService(project, IServiceA.class).Get()
Community
IntelliJ IDEA Open API and Plugin Development
Persisting State of Components not working
0 votes
Created
September 27, 2016 18:18
IconProvider extension may be it. here is implementation example: JavaDirectoryIconProvider
Community
IntelliJ IDEA Open API and Plugin Development
Change Icon based on Modul
0 votes
Created
September 26, 2016 19:14
as long as it works ;)
Community
IntelliJ IDEA Open API and Plugin Development
Initialise Project, must read PSI-Files
0 votes
Created
September 26, 2016 17:51
ProjectStructureDetector may help. Override this class to provide automatic detection of modules and libraries for 'Create from existing sources' mode of the new project/module wizard. I never...
Community
IntelliJ IDEA Open API and Plugin Development
Initialise Project, must read PSI-Files
0 votes
Created
September 26, 2016 14:46
postStartupActivity extension point in your StartupActivity implementation, in runActivity, add this: StartupManager.getInstance(project) .registerPostStartupActivity(() -> { // the setup code ...
Community
IntelliJ IDEA Open API and Plugin Development
Initialise Project, must read PSI-Files
0 votes
«
First
‹
Previous
Next
›
Last
»