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 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
Created
September 23, 2016 20:19
Ирина, maybe this could help: CSVReader if your plugin depends on many large CSV files, maybe it is worth to consider adding a dependency on SQL database and interact with it via SQL driver. If I...
Community
IntelliJ IDEA Open API and Plugin Development
Referencing a CSV file
0 votes
Created
September 23, 2016 15:14
:) welcome
Community
IntelliJ IDEA Open API and Plugin Development
Configurable code completion list in custom language
0 votes
«
First
‹
Previous
Next
›
Last
»