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
September 13, 2016 09:56
Do you want to add highlighting to the existing editor for a local file or to embed diff window into the editor window (as a separate tab)? The difference is "I want to see <things that were change...
Community
IntelliJ IDEA Open API and Plugin Development
VCS and editor plugin
0 votes
Created
September 09, 2016 10:28
You can register DnD source on your component with a DataFlavor.stringFlavor. For example: DnDSupport.createBuilder(component) .setBeanProvider(info -> { if (info.isMove()) { return new DnDD...
Community
IntelliJ IDEA Open API and Plugin Development
drag and drop to Editor
0 votes
Created
September 07, 2016 19:20
Could you show a mockup of what you're trying to achieve?
Community
IntelliJ IDEA Open API and Plugin Development
VCS and editor plugin
0 votes
Created
September 06, 2016 09:55
This is likely a bug. Does it happen for all files, or only some of them? (ex: binary files, files without extension, files with some specific extension) Could you please attach log files ? https:/...
Community
IntelliJ IDEA EAP Users
Error when trying to diff files when using hide extensions option
0 votes
Created
September 01, 2016 10:35
Yes, this is a bug. You can track it at https://youtrack.jetbrains.com/issue/IDEA-160646
Community
IntelliJ IDEA Users
Using external diff tool drops extension from filename
0 votes
Created
July 05, 2016 10:33
Are you sure you won't use git hooks instead? Disabling an action will not prevent users from executing `git push` from command line (or any other git gui).
Community
IntelliJ IDEA Open API and Plugin Development
Disable Default Entrance of Git Push or Replace Git Push with Our Implement?
0 votes
Edited
June 27, 2016 11:48
Or you can search for projects that contain this file under theirs source roots. ProjectManager.getInstance().getOpenProjects()ProjectRootManager.getInstance(project).getFileIndex().isInContent(eve...
Community
IntelliJ IDEA Open API and Plugin Development
How to get project in VirtualFileListener
0 votes
Created
June 27, 2016 11:34
Hi, I'm afraid, there are no API to do so. Are you trying to fix IDEA-24398 with a plugin? A long answer in case if you'd like to try a hacky approach: You can disable LineStatusTrackerManager by...
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
Created
June 23, 2016 10:02
If you want to know details - you might check implementation of ActionManagerImpl. The idea is that ActionManager allows to get AnAction instance by its `id`. These `id` are registered in `.xml` fi...
Community
IntelliJ IDEA Open API and Plugin Development
Intellij plugin development, how to prevent an action from occuring, like closing a tab
0 votes
Edited
June 22, 2016 11:36
The issue is that there are multiple actions with the same shortcut available in given context. In this case we don't know which one to execute, and pick the first one. You can use com.intellij.ope...
Community
IntelliJ IDEA Open API and Plugin Development
[Action, Shortcut] How to force IDE to use action shortcut?
0 votes
«
First
‹
Previous
Next
›
Last
»