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
Edited
July 10, 2019 12:39
1) You can use `FileEditor#isModified`. See also `FileEditor#PROP_MODIFIED` and `FileEditor#addPropertyChangeListener`.2) Probably, you can listen for `FileDocumentManagerListener#beforeAllDocument...
Community
IntelliJ IDEA Open API and Plugin Development
Custom file editor / save file
0 votes
Edited
July 04, 2019 15:11
Events should be fired for com.intellij.openapi.editor.event.DocumentListener.`VirtualFileListener.contentsChanged` should be notified when changes are saved on disk. Ex: on explicit "Save All (Ctr...
Community
IntelliJ IDEA Open API and Plugin Development
Comparing directories using DiffManger
0 votes
Created
July 03, 2019 14:08
I do not think so.You can, probably, inherit package-private `com.intellij.openapi.vfs.ex.dummy.VirtualFileDataImpl` and use it in a copy of `createChildFile`.Or ask us to support `setWritable` in ...
Community
IntelliJ IDEA Open API and Plugin Development
Comparing directories using DiffManger
0 votes
Created
June 26, 2019 11:54
You can show a custom popup menu when toolbar button is clicked and have full control over it.Smth like this: https://github.com/JetBrains/intellij-community/blob/a0e582f54c47c87bf7d13246b7ffa3db40...
Community
IntelliJ IDEA Open API and Plugin Development
CustomComponentAction not rendering my custom component
0 votes
Created
June 24, 2019 12:39
Also, icon might not be shown on toolbar if it is too big (actions use 16/32px images, and plugin icons are 40/80px).
Community
IntelliJ IDEA Open API and Plugin Development
New actions on toolbar
0 votes
Edited
June 24, 2019 12:33
`pluginIcon.svg` is used in plugin marketpace.https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_icon_file.htmlAction icons use different mechanism:https://www.jetbrains.org...
Community
IntelliJ IDEA Open API and Plugin Development
New actions on toolbar
0 votes
Created
June 11, 2019 10:40
This is an action from Kotlin plugin:https://github.com/JetBrains/kotlin/blob/3854a323faecbabfd0a08217fcde5c67529ad985/idea/src/org/jetbrains/kotlin/idea/actions/JavaToKotlinAction.kt
Community
IntelliJ IDEA Open API and Plugin Development
Converting Java to Kotlin
0 votes
Created
June 11, 2019 10:11
There are no handy API to get this info.You can take a look at implementation of `com.intellij.openapi.vcs.actions.AnnotateDiffViewerAction`. Notably, `collectEventData` and `createTwosideAnnotatio...
Community
IntelliJ IDEA Open API and Plugin Development
VcsUtil.getVcsFor return null
0 votes
Created
June 10, 2019 17:51
`VirtualFile` that is shown in diff viewer does not belong to LocalFileSystem.`VcsUtil.getVcsFor(project, virtualFile)` returns `null` for such files, as they are not under VCS (ex: you can't chang...
Community
IntelliJ IDEA Open API and Plugin Development
VcsUtil.getVcsFor return null
0 votes
Created
May 06, 2019 10:46
You can override `com.intellij.openapi.ui.DialogWrapper#createActions` (and `com.intellij.openapi.ui.DialogWrapper#createLeftSideActions`).See "Tip of the day" dialog as an example: https://github....
Community
IntelliJ IDEA Open API and Plugin Development
Custom buttons in DialogWrapper
0 votes
«
First
‹
Previous
Next
›
Last
»