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
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
Created
September 22, 2016 15:51
why there may be few CSV plugins: bulk CSV data is often imported to spreadsheet software or SQL database, where it is stored and processed. text editor is usually used for ad hoc viewing / editing...
Community
IntelliJ IDEA Open API and Plugin Development
Referencing a CSV file
0 votes
Created
September 18, 2016 23:27
try DaemonCodeAnalyzer.getInstance(project).restart();
Community
IntelliJ IDEA Open API and Plugin Development
ExternalAnnotator not updating the red/green/yellow square/checkmark in upper right corner of the editor
0 votes
Created
September 18, 2016 11:21
it is probably not good to set it programmatically. Users may prefer to auto save or save manually each time. Let the users decide if they want the files to be auto saved, and how often. You could ...
Community
IntelliJ IDEA Open API and Plugin Development
ExternalAnnotator not updating the red/green/yellow square/checkmark in upper right corner of the editor
0 votes
«
First
‹
Previous
Next
›
Last
»