主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
简体中文
English (United States)
登录
Dmitry Batrak
活动总数
599
最后的活动
2023年06月06日 09:14
成员加入日期
2013年12月19日 17:00
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
246
活动概览
文章(0)
帖子(0)
评论(353)
按最近的活动排序
最近的活动
投票数
创建于
2017年03月28日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
Add marker to code line
0 票
创建于
2017年03月28日 09:04
Could you please elaborate what do you mean by a marker bar?
社区
IntelliJ IDEA Open API and Plugin Development
Add marker to code line
0 票
创建于
2017年03月27日 09:20
You can use editor.getMarkupModel().addLineHighlighter(...) to achieve that.
社区
IntelliJ IDEA Open API and Plugin Development
How to change color of given code line
0 票
创建于
2017年03月24日 11:51
IDEA only supports Emoji Unicode characters (https://en.wikipedia.org/wiki/Emoji), not common abbreviations for emoji.
社区
IntelliJ IDEA Users
How turn on Emojis in 2017.1 ?
0 票
创建于
2017年03月22日 07:06
For any offset you can use editor.visualPositionToPoint2D(editor.offsetToVisualPosition(offset)). editor.visualPositionToXY can also be used, if integer precision is enough.
社区
IntelliJ IDEA Open API and Plugin Development
Position of PsiElement in editor
0 票
已编辑于
2017年03月20日 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...
社区
IntelliJ IDEA Plugin Users
I want to wrap existing internal plugin (quick javadoc)
0 票
创建于
2017年03月20日 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...
社区
IntelliJ IDEA Plugin Users
I want to wrap existing internal plugin (quick javadoc)
0 票
创建于
2017年03月16日 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)...
社区
IntelliJ IDEA Open API and Plugin Development
Incorrect help when caret at word end
0 票
创建于
2017年02月24日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Intercept clicks in documentation popup?
0 票
创建于
2017年02月13日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Problem with HighlighterIterator passed to QuoteHandler
0 票
«
第一页
‹
上一页
下一页
›
最后
»