Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aleksey Pivovarov
Total activity
801
Last activity
September 23, 2024 14:52
Member since
August 06, 2013 15:41
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
444
Activity overview
Articles (0)
Posts (0)
Comments (357)
Sort by recent activity
Recent activity
Votes
Created
September 16, 2019 15:36
You need to add "lib/tools.jar" to the configured JDKs.
Community
IntelliJ IDEA Open API and Plugin Development
Classes not found whilst trying to build community source
0 votes
Created
July 25, 2019 13:08
IIUC, `GitRepository.getCurrentRevision` should be already updated, when accessed from `callInAwtLater` callback.
Community
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 votes
Edited
July 25, 2019 10:38
If you need to know up-to-date value of HEAD when button is clicked (to know which next commit to checkout), it's better to re-check its value manually via `GitRevisionNumber.resolve(project, root,...
Community
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 votes
Created
July 25, 2019 08:42
You could, probably, register "post-checkout" hook in git and notify IDE from it (using launcher, custom url handler, rpc, etc).But that requires modifying repository config, which might be an anno...
Community
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 votes
Created
July 24, 2019 12:00
You can try `com.intellij.openapi.vcs.BranchChangeListener`. but it might not be fired for some checkouts (ex: performed from command line or for rolled back checkouts).You can also listen for all ...
Community
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 votes
Edited
July 22, 2019 09:41
Does "appearing" means it is visible in the list of available tool windows, or that it is expanded and focused when project is opened? `isDoNotActivateOnStart` should stop IDE from activating it on...
Community
IntelliJ IDEA Open API and Plugin Development
Cancel Tool Window appearance on startup
0 votes
Created
July 16, 2019 18:13
You can pass specific jvm option in debug environment and check it with System.getProperty.For example: `-Didea.debug.mode=true`.
Community
IntelliJ IDEA Open API and Plugin Development
Determining if plugin was launched from IDEA itself during plugin development
0 votes
Edited
July 16, 2019 12:42
You can create ActionToolbar using `com.intellij.openapi.actionSystem.ActionManager.createActionToolbar` and add AnAction on it via ActionGroup.Or, if you need to use JButton, Action and InputEvent...
Community
IntelliJ IDEA Open API and Plugin Development
AnAction event from Toolwindow button.
0 votes
Created
July 16, 2019 10:47
Probably, by modifying Document and invoking `FileDocumentManager.saveDocument(Document)` on it (to sync Document -> VirtualFile / FS).
Community
IntelliJ IDEA Open API and Plugin Development
Custom file editor / save file
0 votes
Created
July 16, 2019 10:09
Which part of IDE do you want to notify about this change? What should it do with that notification?If the file is a text one and changes in JTextFields are not mirrored to corresponding Document, ...
Community
IntelliJ IDEA Open API and Plugin Development
Custom file editor / save file
0 votes
«
First
‹
Previous
Next
›
Last
»