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
June 16, 2020 13:21
It should be the first. Ex: https://github.com/JetBrains/intellij-community/blob/master/plugins/devkit/devkit-java-tests/testData/codeInsight/pluginWithModules.xml#L1Which version of IDE do you use...
Community
IntelliJ IDEA Open API and Plugin Development
Restart button doesn't appear after installed a custom plugin in IntelliJ 2020.1
1 vote
Edited
May 08, 2020 11:59
UPD: GitFileAnnotation will return data for lines in HEAD revision (just like 'git blame' does).These might not be the same if file has uncommitted changes.So you might need to transfer line number...
Community
IntelliJ IDEA Open API and Plugin Development
Receiving VcsUser instance
1 vote
Edited
May 08, 2020 11:47
>maybe it can be helpful:Probably, it won't be - DiffContent is used to show "diff windows".First, you need to get registered VCS root for the file in context: val file = FileDocumentManager.getFil...
Community
IntelliJ IDEA Open API and Plugin Development
Receiving VcsUser instance
1 vote
Created
April 14, 2020 09:19
1. PersistentStateComponent saves you from trouble of serialization, ensures that everything is persisted on project/application exit, allows to share/import settings, etc.Usually, it does not drop...
Community
IntelliJ IDEA Open API and Plugin Development
Plugin saving data PersistentStateComponent
1 vote
Edited
February 24, 2020 19:36
Markdown plugin (and similar ones) do not add a toolbar/panel to the Editor.They create whole view with two editors and replace default one (you can also keep default view, this will add tab bar at...
Community
IntelliJ IDEA Open API and Plugin Development
Button Bar on certain files
1 vote
Edited
February 24, 2020 19:26
You can use standard Java threading, but it's preferrable to use Application thread pool.See `com.intellij.openapi.application.ApplicationManager.getApplication().executeOnPooledThread(Runnable)`, ...
Community
IntelliJ IDEA Open API and Plugin Development
Computationally expensive action
1 vote
Created
November 27, 2019 10:48
VFS events are fired when files are changed on disk (more precise: when IDE realizes that they are changed and syncs its state).Typing in Editor modifies corresponding in-memory structure - Documen...
Community
IntelliJ IDEA Open API and Plugin Development
Virtual File changes only occur when clicking off Intellij
1 vote
Created
November 18, 2019 11:07
>Caused by: java.lang.ClassNotFoundException: git4idea.GitVcs PluginClassLoader[net.kaiba.source, 1.0-SNAPSHOT]Probably, you need to mark git4idea plugin as dependency: `<depends>Git4Idea</depends>...
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
1 vote
Created
October 14, 2019 23:25
There are no such API at the moment.You can try passing `showDiff(..., new DiffDialogHints(... Consumer<WindowWrapper> windowConsumer))` and register `UIUtil.runWhenWindowClosed(wrapper.window, som...
Community
IntelliJ IDEA Open API and Plugin Development
Subscribe to Diff Editor Close Event
1 vote
Created
September 23, 2019 18:19
Looks like the issue is already fixed in grammar kit plugin: https://github.com/JetBrains/Grammar-Kit/issues/215
Community
IntelliJ IDEA Open API and Plugin Development
Can't start Plugin with IntelliJ 2019.3-EAP
1 vote
«
First
‹
Previous
Next
›
Last
»