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
May 14, 2018 14:48
First, you can use EditorTrackerListener and `com.intellij.codeInsight.daemon.impl.EditorTracker` to listen for events.But, probably, creating a window is too much of a distraction. For example, yo...
Community
IntelliJ IDEA Open API and Plugin Development
New Editor Tab Action for plugin
1 vote
Created
May 02, 2018 12:07
@Nullable@Overridepublic Object getData(@NonNls String dataId) { if (PlatformDataKeys.COPY_PROVIDER.is(dataId)) { return this; } return null;}
Community
IntelliJ IDEA Open API and Plugin Development
TypeSafeDataProvider Replacement?
1 vote
Created
May 01, 2018 21:26
If you do not need anything unusual, you can use `com.intellij.testFramework.LightVirtualFile`. val file = LightVirtualFile("Sample Name", PlainTextFileType.INSTANCE, "file content") file.isWritab...
Community
IntelliJ IDEA Open API and Plugin Development
Display String value in read-only file editor
1 vote
Edited
April 04, 2018 09:02
See `com.intellij.openapi.options.ShowSettingsUtil`.`showSettingsDialog` will show settings dialog with passed tab selected.`editConfigurable` will show passed Configurable as a separate window.
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to open the settings menu of the IDE programaticly and jump to a specific Point?
1 vote
Edited
March 12, 2018 16:26
I'm not sure if I got the question correctly. Do you want to use intellij features from some external Qt-like GUI framework?Or do you want to create a plugin, that would use Swing and intellij feat...
Community
IntelliJ IDEA Open API and Plugin Development
How to develop on top of the IDEA?
1 vote
Created
March 03, 2018 19:32
You need to add content.putUserData(ToolWindow.SHOW_CONTENT_ICON, Boolean.TRUE);
Community
IntelliJ IDEA Open API and Plugin Development
Icon in tabs
1 vote
Created
August 26, 2017 13:43
Also, there are `com.intellij.openapi.editor.event.EditorEventMulticaster` and `com.intellij.openapi.editor.EditorFactory#getEventMulticaster`.Probably, it will be better than manually tracking all...
Community
IntelliJ IDEA Open API and Plugin Development
how to register a universal editor onlick listener
1 vote
Created
August 24, 2017 13:06
You can use `ToolWindowManager.getInstance(project).getToolWindow(TOOLWINDOW_ID)`.Or you can create projectService and store necessary data there.
Community
IntelliJ IDEA Open API and Plugin Development
Access toolwindow from an action
1 vote
Edited
August 24, 2017 12:56
>How to detect that file is binaryVirtualFile.getFileType().isBinary()>Maybe exists something like list of supported file extensions?Yes, you can find it in "File | Settings | Editor | File Types"....
Community
IntelliJ IDEA Open API and Plugin Development
IsFileBinary()
1 vote
Edited
August 17, 2017 11:27
`com.intellij.diff.util.DiffUserDataKeysEx#EDITORS_CARET_POSITION` should help.https://github.com/JetBrains/intellij-community/blob/master/platform/diff-impl/src/com/intellij/diff/tools/util/side/T...
Community
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
1 vote
«
First
‹
Previous
Next
›
Last
»