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
Edited
September 08, 2016 18:57
different event triggers are probably not aware of each other. They trigger event as soon as there is a reason to do so, without connection to other event triggers. is externalAnnotator extension...
Community
IntelliJ IDEA Open API and Plugin Development
DocumentEvent and PsiTreeChangeEvent fired many times
0 votes
Created
September 08, 2016 15:38
Привет Ирина, document change events are triggered often. Nothing wrong with that. Calling external process on each event will slow down the program a lot. here is another possibility: init a re...
Community
IntelliJ IDEA Open API and Plugin Development
DocumentEvent and PsiTreeChangeEvent fired many times
0 votes
Edited
September 06, 2016 20:30
do you mean: load externally parsed psi to Idea? PsiBinaryFileImpl https://github.com/JetBrains/intellij-community/blob/10a4c91dbfca935b4b5531003fd8c13b56e66202/platform/core-impl/src/com/intellij/...
Community
IntelliJ IDEA Open API and Plugin Development
create psi from binary file
0 votes
Created
September 06, 2016 19:15
to display bin as readable text, you still need to convert it to string. to format (difficult!), highlight text in Idea, you'd need to build psi tree. if there are psi parsers / formatters avail...
Community
IntelliJ IDEA Open API and Plugin Development
create psi from binary file
0 votes
Edited
September 02, 2016 19:01
this should work too: <actions> <group id="Id1" text="Plugin name" description="Plugin actions"> <add-to-group group-id="MainMenu" anchor="last"/><group id="Id2" text="Hello action" description=".....
Community
IntelliJ IDEA Open API and Plugin Development
Plugin not showing in main menu
0 votes
Created
July 18, 2016 05:32
> Add IntelliJ source to the SDK are you changing your plugin code or Intellij code? If changes are made to Intellij code, I have no idea how this is supposed to work. If this is plugin code, in my...
Community
IntelliJ IDEA Open API and Plugin Development
Code change is not being reflected in the idea plugin
0 votes
Created
July 17, 2016 19:37
> once after uninstalling the plugin, and a second time after that for it to pick up my plugin code changes. what happens if you do not uninstall the plugin but instead: close the secondary instan...
Community
IntelliJ IDEA Open API and Plugin Development
Code change is not being reflected in the idea plugin
0 votes
Created
July 17, 2016 12:44
> restarting that secondary instance yes I thought you'd referred to the main "non-plugin-dev" instance. well secondary instance needs to be restarted if you change plugin code. I am not sure if th...
Community
IntelliJ IDEA Open API and Plugin Development
Code change is not being reflected in the idea plugin
0 votes
Created
July 17, 2016 05:25
it is possible to run a plugin you work on, without installing it: select "Plugin" run/debug configuration, then click run button. When upgrading plugin to a new version, it is not necessary to u...
Community
IntelliJ IDEA Open API and Plugin Development
Code change is not being reflected in the idea plugin
0 votes
Created
June 15, 2016 06:01
this may work: JBPopupFactory factory = JBPopupFactory.getInstance(); BalloonBuilder builder = factory.createHtmlTextBalloonBuilder(html, MessageType.INFO, null); Balloon b = builder.createBalloo...
Community
IntelliJ IDEA Open API and Plugin Development
Message dialog in Intellij
0 votes
«
First
‹
Previous
Next
›
Last
»