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
Edited
May 22, 2017 08:52
There's no API to get that information currently. It can be calculated as follows: int y = editor.visualPositionToXY(...).y;FontMetrics fm = editor.getFontMetrics(Font.PLAIN);int caretTop = y - fm....
Community
IntelliJ IDEA Open API and Plugin Development
How do I get the highest point of a caret located at an offset?
1 vote
Created
April 23, 2017 09:10
What you see in UI is what your FileEditor returns from 'getComponent()' method. If I understood correctly, you just return 'new JPanel()' from it, and you see empty panel in UI. That looks like an...
Community
IntelliJ IDEA Open API and Plugin Development
Building a custom editor
1 vote
Created
March 17, 2017 09:12
Are you sure that project you're using to create EditorTextField matches the project, where tool window is added? Try to put a breakpoint into EditorImpl.release() and see the stack trace causing e...
Community
IntelliJ IDEA Open API and Plugin Development
EditorTextFields being disposed across all open projects when one project closed
1 vote
Created
December 21, 2016 15:45
This usually works for simple text editing actions. For actions or commands marked as 'global' (com.intellij.openapi.command.undo.UndoableAction#isGlobal, com.intellij.openapi.command.CommandProces...
Community
IntelliJ IDEA Open API and Plugin Development
Undo programmatically
1 vote
Created
December 20, 2016 09:21
If your commands specify the same groupId, they will be undone in one step.
Community
IntelliJ IDEA Open API and Plugin Development
Undo programmatically
1 vote
Created
December 19, 2016 09:11
The answer to a) - try using 'order' attribute (with 'first' or 'last' value) when registering your FoldingBuilder extension.
Community
IntelliJ IDEA Open API and Plugin Development
Overriding FoldingDescriptors [SOLVED]
1 vote
Created
November 23, 2016 07:05
Try to debug com.intellij.codeInsight.editorActions.TypedHandler#handleQuote method while typing a quote in HTL content.
Community
IntelliJ IDEA Open API and Plugin Development
Quote handler in template language
1 vote
Created
July 14, 2014 08:40
Settings -> Editor -> Appearance -> Show vertical indent guides
Community
IntelliJ IDEA Users
How to enable line linking 2 braces?
1 vote
Created
February 20, 2016 10:29
ActionManager.addAnActionListener() can also help
Community
IntelliJ IDEA Open API and Plugin Development
[Question] is there any way to get edit document action?
1 vote
Created
June 03, 2015 07:59
You'll need to implement ActiveGutterRenderer to do that. You can take existing implementations as examples.
Community
IntelliJ IDEA Open API and Plugin Development
Vertical linemarker in Editor
1 vote
«
First
‹
Previous
Next
›
Last
»