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
January 12, 2018 09:07
`com.intellij.execution.RunManagerListener`https://github.com/JetBrains/intellij-community/blob/master/platform/lang-impl/src/com/intellij/execution/RunManagerListener.javahttps://github.com/JetBra...
Community
IntelliJ IDEA Open API and Plugin Development
Listen for Run Configuration Changes
0 votes
Created
December 19, 2017 10:06
Probably, you're looking for `com.intellij.ide.ui.LafManager`.There are similar existing plugin (https://plugins.jetbrains.com/plugin/8518-themeswitcher), but it uses `javax.swing.UIManager#setLook...
Community
IntelliJ IDEA Open API and Plugin Development
Programmatically change menu options in IntelliJ
0 votes
Edited
November 07, 2017 09:01
Probably, this task can be solved with a scope-based highlighting: https://www.jetbrains.com/help/idea/file-colors.html https://www.jetbrains.com/help/idea/scope.html Also, you can take a look at...
Community
IntelliJ IDEA Open API and Plugin Development
Change editor tab colour based on user-configured regexes.
0 votes
Created
August 26, 2017 13:46
You can listen for changes in selection/caret position. See `com.intellij.openapi.editor.event.EditorEventMulticaster`https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000539524-ho...
Community
IntelliJ IDEA Open API and Plugin Development
Trigger action on word selection
0 votes
Created
August 26, 2017 13:16
>FileEditorManagerAdapter has been deprecated.It was deprecated because FileEditorManagerListener was migrated to JDK8 and now uses default method implementations (so this adapter is no longer need...
Community
IntelliJ IDEA Open API and Plugin Development
how to register a universal editor onlick listener
0 votes
Created
August 24, 2017 14:00
Probably, `com.intellij.openapi.compiler.CompilerManager#addBeforeTask` might help.See: `com.intellij.openapi.compiler.CompileContext#getCompileScope``com.intellij.openapi.compiler.CompileScope#get...
Community
IntelliJ IDEA Open API and Plugin Development
Pre compile task
0 votes
Edited
August 24, 2017 13:54
Probably, you can do it by passing smth like ["cmd.exe", "/C", "call", "file1.bat", "&&", "call", "file2.bat"]. `.bat` is not an executable file, so it can't be executed by OSProcessHandler. It mig...
Community
IntelliJ IDEA Open API and Plugin Development
Run a external command in a custom console
0 votes
Created
August 24, 2017 12:45
>is it possible to log evey action which is available in the "Plugin DevKit"?It is possible to log all AnActions that are invoked via toolbar/shortcut/menu.You should enter internal mode (add "-Did...
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to log every action?
0 votes
Created
August 16, 2017 16:19
Also, you probably can register your own `com.intellij.openapi.vcs.checkin.CheckinHandler` (with its own `checkinSuccessful()`) in a plugin via `com.intellij.openapi.vcs.checkin.CheckinHandlerFacto...
Community
IntelliJ IDEA Open API and Plugin Development
How to genrate my own git4idea plugin
0 votes
Created
August 12, 2017 14:48
You can use com.intellij.diff.impl.CacheDiffRequestChainProcessor (it is used in diff frames)See alsocom.intellij.diff.chains.SimpleDiffRequestChaincom.intellij.diff.impl.DiffRequestProcessor
Community
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
0 votes
«
First
‹
Previous
Next
›
Last
»