主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
创建于
2018年01月12日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Listen for Run Configuration Changes
0 票
创建于
2017年12月19日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Programmatically change menu options in IntelliJ
0 票
已编辑于
2017年11月07日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Change editor tab colour based on user-configured regexes.
0 票
创建于
2017年08月26日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Trigger action on word selection
0 票
创建于
2017年08月26日 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...
社区
IntelliJ IDEA Open API and Plugin Development
how to register a universal editor onlick listener
0 票
创建于
2017年08月24日 14:00
Probably, `com.intellij.openapi.compiler.CompilerManager#addBeforeTask` might help.See: `com.intellij.openapi.compiler.CompileContext#getCompileScope``com.intellij.openapi.compiler.CompileScope#get...
社区
IntelliJ IDEA Open API and Plugin Development
Pre compile task
0 票
已编辑于
2017年08月24日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Run a external command in a custom console
0 票
创建于
2017年08月24日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to log every action?
0 票
创建于
2017年08月16日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to genrate my own git4idea plugin
0 票
创建于
2017年08月12日 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
社区
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
0 票
«
第一页
‹
上一页
下一页
›
最后
»