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
August 19, 2020 11:07
This method is new (since 2020.2), it's a cached version of "Editor.xyToLogicalPosition(e.getMouseEvent().getPoint())".You can use the latter for compatibility with older IDEs.
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Created
August 17, 2020 15:19
>Which class, method, interface etc. should I use to create the popup and display it?Probably, JBPopupFactory.getInstance().createComponentPopupBuilder(...) ... .createPopup().showInBestPositionFor...
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Created
August 05, 2020 11:50
Could you explain what you're trying to highlight in more details? It's hard to suggest anything without knowing how/why highlighting should be created and when it should be updated (file changes, ...
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Created
August 05, 2020 09:26
https://jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/annotator.html If annotator fits your purpose, yes, you're most likely should use an annotator.
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Edited
August 05, 2020 09:04
HighlightInfo is created from 'com.intellij.lang.annotation.Annotation' that are created by Annotators. It can't be used together with 'addRangeHighlighter'.
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Created
August 04, 2020 10:44
If your highlighter is generated from HighlightInfo, you can simply specify tooltip/description for it.There's also com.intellij.codeInsight.preview.PreviewHintProvider that works on "Shift + mouse...
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Edited
August 04, 2020 10:09
"intellij.maven.model" is the name of a JPS module.To specify plugin dependency, you need to use "plugin id", that is defined in plugin.xml nearby. Using "org.jetbrains.idea.maven.model" or "org.je...
Community
IntelliJ IDEA Open API and Plugin Development
Unable to resolve org.jetbrains.idea.maven.model.MavenId
0 votes
Created
August 04, 2020 10:00
You can use Editor.logicalPositionToXY() method. See also Editor.getScrollingModel().getVerticalScrollOffset() to adjust for scrollbar position.
Community
IntelliJ IDEA Open API and Plugin Development
Convert caret position to mouse position
0 votes
Edited
August 03, 2020 10:22
Like I said, by listening to DocumentListener and some other events (such as explicit notifications after performing vcs actions from IDE).If you're interested in details, you can track VcsDirtySco...
Community
IntelliJ IDEA Open API and Plugin Development
Vfs listener is not notified.
0 votes
Created
August 01, 2020 20:54
Yes it does.
Community
IntelliJ IDEA Open API and Plugin Development
Vfs listener is not notified.
0 votes
«
First
‹
Previous
Next
›
Last
»