Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Dmitry Batrak
Total activity
599
Last activity
June 06, 2023 09:14
Member since
December 19, 2013 17:00
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
246
Activity overview
Articles (0)
Posts (0)
Comments (353)
Sort by recent activity
Recent activity
Votes
Created
February 24, 2016 10:19
Openapi.jar can have differences between different versions of the same IDE as well - as the API is evolving, new features being added and deprecated ones removed. There shouldn't be a notable diff...
Community
IntelliJ IDEA Open API and Plugin Development
Are there any docs that cover the differences between IDEA and AppCode?
0 votes
Created
February 24, 2016 10:44
There's no such an event at the level of FileEditorManager. You should get a component event though when editor component changes visibility.
Community
IntelliJ IDEA Open API and Plugin Development
[Question] fail to register two event handler
0 votes
Created
March 25, 2016 09:29
It's a known issue - https://youtrack.jetbrains.com/issue/IDEA-72989
Community
IntelliJ IDEA Open API and Plugin Development
can not show unicode in text editor
0 votes
Created
March 25, 2016 10:50
We definitely plan to fix it. Cannot tell how soon that will happen.
Community
IntelliJ IDEA Open API and Plugin Development
can not show unicode in text editor
0 votes
Created
February 11, 2016 09:52
I thought the main problem was to find out whether document change is caused by action, or e.g. by synchronizing with file system (in case of update from VCS, etc). If you just need to find the act...
Community
IntelliJ IDEA Open API and Plugin Development
How to determine if a document change is as a result of an editor action?
0 votes
Created
February 15, 2016 11:01
> > use CommandProcessor.runUndoTransparentAction instead of CommandProcessor.executeCommand. > What does this actually do? Does it merge the changes from the transparent action with the previous u...
Community
IntelliJ IDEA Open API and Plugin Development
How to determine if a document change is as a result of an editor action?
0 votes
Created
February 16, 2016 07:23
You can register an event listener via IdeEventQueue.addPostprocessor. It will receive all AWTEvent-s for the application.
Community
IntelliJ IDEA Open API and Plugin Development
Capturing Keyboard and Mouse events
0 votes
Created
February 18, 2016 08:42
If your action is not executed in editor context, you'll need to provide a different AnActionEvent with editor's data context (you can get it using EditorEx.getDataContext() for the specific editor...
Community
IntelliJ IDEA Open API and Plugin Development
How do I invoke an action from another?
0 votes
Created
May 09, 2016 08:17
>I'm working on a plugins that add carets. However, during that process, the primary caret gets changed (I'm not a 100% sure why, though while digging in the code, it seems the last caret added is ...
Community
IntelliJ IDEA Open API and Plugin Development
Caret "beyond end of line"
0 votes
Created
February 11, 2016 07:26
Maybe an action listener can help you (see ActionManager#addAnActionListener).
Community
IntelliJ IDEA Open API and Plugin Development
How to determine if a document change is as a result of an editor action?
0 votes
«
First
‹
Previous
Next
›
Last
»