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
March 28, 2017 09:14
OK, I see. You need to create a highlighter to do that: editor.getMarkupModel().addRangeHighlighter(...) or editor.getMarkupModel().addLineHighlighter(...) The highlighter should either be created ...
Community
IntelliJ IDEA Open API and Plugin Development
Add marker to code line
0 votes
Created
March 28, 2017 09:04
Could you please elaborate what do you mean by a marker bar?
Community
IntelliJ IDEA Open API and Plugin Development
Add marker to code line
0 votes
Created
March 27, 2017 09:20
You can use editor.getMarkupModel().addLineHighlighter(...) to achieve that.
Community
IntelliJ IDEA Open API and Plugin Development
How to change color of given code line
0 votes
Created
March 24, 2017 11:51
IDEA only supports Emoji Unicode characters (https://en.wikipedia.org/wiki/Emoji), not common abbreviations for emoji.
Community
IntelliJ IDEA Users
How turn on Emojis in 2017.1 ?
0 votes
Created
March 22, 2017 07:06
For any offset you can use editor.visualPositionToPoint2D(editor.offsetToVisualPosition(offset)). editor.visualPositionToXY can also be used, if integer precision is enough.
Community
IntelliJ IDEA Open API and Plugin Development
Position of PsiElement in editor
0 votes
Edited
March 20, 2017 08:20
What do you want to change in javadoc output? If you can work with existing HTML text, just take the output of JavaDocumentationProvider, and modify it in your DocumentationProvider as you wish. Ot...
Community
IntelliJ IDEA Plugin Users
I want to wrap existing internal plugin (quick javadoc)
0 votes
Created
March 20, 2017 07:42
You should be able to customize quick-doc contents by registering a DocumentationProvider instance for corresponding language. You can find examples of DocumentationProvider implementations and the...
Community
IntelliJ IDEA Plugin Users
I want to wrap existing internal plugin (quick javadoc)
0 votes
Created
March 16, 2017 08:33
PSI element under caret for use by DocumentationManager (and other clients) is determined by com.intellij.codeInsight.TargetElementUtil#findTargetElement method. Basic logic (working e.g. for Java)...
Community
IntelliJ IDEA Open API and Plugin Development
Incorrect help when caret at word end
0 votes
Created
February 24, 2017 08:28
The links contained in the documentation your provider returns are expected to be in the form understood by DocumentationManager (if you get the links from external source, you'll need to convert t...
Community
IntelliJ IDEA Open API and Plugin Development
Intercept clicks in documentation popup?
0 votes
Created
February 13, 2017 06:55
Have you tried to debug LexerEditorHighlighter.documentChanged() ? It's the place where incremental re-lexing takes place. (I assume when lexing the whole file, e.g. on initial editor opening, ever...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with HighlighterIterator passed to QuoteHandler
0 votes
«
First
‹
Previous
Next
›
Last
»