Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aleksey Pivovarov
Total activity
801
Last activity
September 23, 2024 14:52
Member since
August 06, 2013 15:41
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
444
Activity overview
Articles (0)
Posts (0)
Comments (357)
Sort by recent activity
Recent activity
Votes
Created
March 03, 2018 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:...
Community
IntelliJ IDEA Open API and Plugin Development
Can I run a custom IDEA bundled app under the IDEA debugger?
0 votes
Edited
February 26, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 votes
Created
February 23, 2018 13:33
So, the idea is to have diff preview for commits in Log tab (not for local changes) ?
Community
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 votes
Created
February 23, 2018 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. ...
Community
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 votes
Created
February 23, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Trying to reuse the diff view at a different place
0 votes
Created
February 07, 2018 18:15
Won't Document solve this? Document document = editor.getDocument();int startOffset = document.getLineStartOffset(lineNumber);int endOffset = document.getLineEndOffset(lineNumber);
Community
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 votes
Created
February 05, 2018 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.
Community
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 votes
Edited
February 02, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 votes
Created
February 01, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 votes
Created
February 01, 2018 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....
Community
IntelliJ IDEA Open API and Plugin Development
Highlight Range not working
0 votes
«
First
‹
Previous
Next
›
Last
»