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
Edited
November 01, 2019 14:11
You can take a look at https://github.com/JetBrains/intellij-community/blob/master/plugins/git4idea/src/git4idea/actions/GitShowCommitInLogAnnotationGutterActionProvider.java or https://github.com/...
Community
IntelliJ IDEA Open API and Plugin Development
annotation right click add a menu entry and get the author string
0 votes
Created
October 18, 2019 15:27
You can do it like this: EditorFactory.getInstance().getEventMulticaster().addDocumentListener(new DocumentListener() { @Override public void documentChanged(@NotNull DocumentEvent event) { Do...
Community
IntelliJ IDEA Open API and Plugin Development
DocumentListener for getting what line was changed
0 votes
Created
October 15, 2019 19:39
You can also try to propagate these changes on the fly (as soon as one of the documents is changed), if these large files can be incrementally modified.Something similar is done in https://github.c...
Community
IntelliJ IDEA Open API and Plugin Development
Subscribe to Diff Editor Close Event
0 votes
Created
October 11, 2019 08:29
You can create AnAction using `com.intellij.openapi.actionSystem.ex.CheckboxAction` and add it to the `Diff.ViewerToolbar` action group.
Community
IntelliJ IDEA Open API and Plugin Development
Add checkbox to Diff toolbar
0 votes
Created
October 06, 2019 18:38
http://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.htmlhttps://github.com/JetBrains/gradle-intellij-plugin#configurationHelp states you can also use project(':su...
Community
IntelliJ IDEA Open API and Plugin Development
Communicate between two plugins using MessageBus
0 votes
Created
October 06, 2019 18:20
>The jars from Plugin A are placed the a libs folder in Plugin B.This might be the potential issue: plugin B should not use its own copy of MarkerNotifier, but rely on the plugin A (it should be av...
Community
IntelliJ IDEA Open API and Plugin Development
Communicate between two plugins using MessageBus
0 votes
Created
September 25, 2019 11:07
You can always follow these exceptions to https://youtrack.jetbrains.com directly.Yes. There are no assertions at the time, but modifying them from another thread is likely to cause a race somewhere.
Community
IntelliJ IDEA Open API and Plugin Development
What is the correct way to register an extension point in code instead of plugin.xml?
0 votes
Created
September 22, 2019 16:12
You can try using `EditorActionManager.getInstance().setActionHandler` instead.There are no generic approach for any extension, as not every extension point can track its modifications (and your mo...
Community
IntelliJ IDEA Open API and Plugin Development
What is the correct way to register an extension point in code instead of plugin.xml?
0 votes
Created
September 21, 2019 22:48
Similar feature already exists in IDE: https://youtrack.jetbrains.com/issue/IDEA-69150Probably, you can use its implementation as a reference.https://github.com/JetBrains/intellij-community/blob/ma...
Community
IntelliJ IDEA Open API and Plugin Development
Plugin - breakpoint highlighter
0 votes
Created
September 21, 2019 22:31
Diff viewer ignores FoldingBuilder of a language and uses its own (that is based on changed lines).There are no API to modify these foldings.
Community
IntelliJ IDEA Open API and Plugin Development
Code Folding for diff view
0 votes
«
First
‹
Previous
Next
›
Last
»