主页
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年03月03日 19:17
>The initial problem I have not gotten past is how to run both apps at the same time.You have to set different "idea.config.path" and "idea.system.path" to have them running at the same time.https:...
社区
IntelliJ IDEA Open API and Plugin Development
Can I run a custom IDEA bundled app under the IDEA debugger?
0 票
已编辑于
2018年02月26日 11:12
Related youtrack issue: https://youtrack.jetbrains.com/issue/IDEA-100234Unfortunately, log tab is not pluggable.You can still try to do this, but it'll require reflection and injecting into existin...
社区
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 票
创建于
2018年02月23日 13:33
So, the idea is to have diff preview for commits in Log tab (not for local changes) ?
社区
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 票
创建于
2018年02月23日 13:24
If you want exactly same data, you can look at `com.intellij.openapi.vcs.changes.ui.ChangesListView` and `com.intellij.openapi.vcs.changes.ChangesViewManager`, where this component is implemented. ...
社区
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 票
创建于
2018年02月23日 11:16
Do you mean, exactly same content? Why do you need it? (ex: it is possible to detach toolwindow into a separate window)If you need your own diff view, you can use `com.intellij.diff.DiffManager#cre...
社区
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 票
创建于
2018年02月07日 18:15
Won't Document solve this? Document document = editor.getDocument();int startOffset = document.getLineStartOffset(lineNumber);int endOffset = document.getLineEndOffset(lineNumber);
社区
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 票
创建于
2018年02月05日 13:34
In this case, these should be "highlighter starting at correct internal line" you are looking for.Ex: you can compare them with an inspection warning for the same line range.
社区
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 票
已编辑于
2018年02月02日 16:32
What task are you trying to solve? What should be the correct internal line? What I am trying to say, is that these markers are shown for the whole document, and not only for the visible part.And i...
社区
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 票
创建于
2018年02月01日 16:42
1. Internal line numbers are starting from 0.2. Markers on scrollbar are not aligned 1-to-1 to editor lines. ex: compilation error produces only small dash, without painting whole area related to t...
社区
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 票
创建于
2018年02月01日 09:13
startOffset/endOffset are not line numbers. These are character numbers, so you have to find lines boundaries first. Editor editor = event.getData(CommonDataKeys.EDITOR);Document document = editor....
社区
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 票
«
第一页
‹
上一页
下一页
›
最后
»