Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Dmitry Batrak
Total activity
599
Last activity
June 06, 2023 09:14
Member since
December 19, 2013 17:00
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
246
Activity overview
Articles (0)
Posts (0)
Comments (353)
Sort by recent activity
Recent activity
Votes
Created
August 14, 2014 13:00
LightPlatformCodeInsightFixtureTestCase by default executes test code in a WriteCommandAction, so your command (becoming recursive command) is ignored - that's why undo doesn't work. This problem c...
Community
IntelliJ IDEA Open API and Plugin Development
How to test with UndoManager
0 votes
Created
October 08, 2014 06:55
For Java it's done using custom CopyPastePostProcessor implementation (JavaCopyPasteReferenceProcessor) - an entity which can extract additional data from source on copy and apply them to target on...
Community
IntelliJ IDEA Open API and Plugin Development
on Paste code - suggest imports(custom lang implementation)
0 votes
Created
October 09, 2014 07:43
Yes, just like any extension is added - seehttps://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+Plugin+Structure#IntelliJIDEAPluginStructure-PluginExtensions.You don't need to extend Copy...
Community
IntelliJ IDEA Open API and Plugin Development
on Paste code - suggest imports(custom lang implementation)
0 votes
Created
October 06, 2014 13:28
Try to use OpenFileDescriptor.navigateInEditor(...) method.
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to specify default editor?
0 votes
Created
October 07, 2014 09:59
This should work.You can also just check whether file.getFileType() is FileTypes.UNKNOWN, and if it is, do the manual type override as you do.
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to specify default editor?
0 votes
Created
October 06, 2014 13:13
You should implement com.intellij.codeInsight.editorActions.smartEnter.SmartEnterProcessor for your language
Community
IntelliJ IDEA Open API and Plugin Development
Custom language: Complete statement(Ctrl-Shift-Enter)
0 votes
Created
October 06, 2014 13:17
It's better to work with action instances directly - you can get registered actions from ActionManager instance. If you need to work with shortcuts, check KeymapManager and Keymap classes, they pro...
Community
IntelliJ IDEA Open API and Plugin Development
Invoking menu actions using java.awt.Robot
0 votes
Created
October 29, 2014 07:27
That exception is thrown when you try to invoke CaretModel.runForEachCaret method recursively. So the piece of your code must be already executing in the context of on runForEachCaret invocation (f...
Community
IntelliJ IDEA Open API and Plugin Development
Multicaret problems
0 votes
Created
October 17, 2014 08:22
I think implementing and registering a com.intellij.openapi.fileEditor.FileEditorProvider instance for metadata editor should solve your problem.
Community
IntelliJ IDEA Open API and Plugin Development
Two files but only one editor with two editor tabs
0 votes
Created
December 03, 2014 07:12
Looks like your FileEditor instance reports that it is not valid right after it has been created by your FileEditorProvider instance. You can check yourself by debugging FileEditorManagerImpl.openF...
Community
IntelliJ IDEA Open API and Plugin Development
Error creating an editor window
0 votes
«
First
‹
Previous
Next
›
Last
»