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
February 03, 2015 07:07
Actions bound to mouse clicks are triggered on mouse release event. Middle mouse click is bound to 'Goto to Declaration' action in default keymap, so on mouse release event that action might be tri...
Community
IntelliJ IDEA Open API and Plugin Development
Mousereleased not firing
0 votes
Created
February 03, 2015 08:23
IDEA uses its own implementation of EventQueue. That implementation, in particular, launches actions bound to mouse clicks and doesn't follow default dispatch path if the action has been triggered....
Community
IntelliJ IDEA Open API and Plugin Development
Mousereleased not firing
0 votes
Created
March 05, 2015 08:03
If you want to have editor area split in two, with different sides displaying different files, use FileEditorManagerEx.createSplitter method (see e.g. com.intellij.ide.actions.SplitAction implement...
Community
IntelliJ IDEA Open API and Plugin Development
Open two panes side by side programmatically
0 votes
Created
April 06, 2015 10:59
Please check that C:\Program Files (x86)\JetBrains\IntelliJ IDEA 14.1\lib folder contains httpclient-4.3.6.jar file and that IntelliJ Platform Plugin SDK you've set up contains C:\Program Files (x8...
Community
IntelliJ IDEA Open API and Plugin Development
Problem running a test - CNFE: org.apache.http.auth.Credentials
0 votes
Created
October 06, 2014 12:14
There's a 'getSelectedText' method in SelectionModel interface. SelectionModel instance is available from Editor instance.
Community
IntelliJ IDEA Open API and Plugin Development
Plugin Development: access selected Code
0 votes
Created
August 10, 2015 09:35
1. Sounds fine to me.2. Associating stack data with editor makes total sense.3. I'd also consider an option of invalidating the cache on any selection change not originating from your handlers.4. J...
Community
IntelliJ IDEA Open API and Plugin Development
Customising Extend Selection
0 votes
Created
August 10, 2015 09:41
Just don't make your EditorActionHandler a per-caret handler, i.e. don't pass runForEachCaret=true to EditorActionHander constructor. Your handler will only be invoked once then, and you can custom...
Community
IntelliJ IDEA Open API and Plugin Development
Customising Extend Selection
0 votes
Created
August 10, 2015 11:23
As handlers operate synchronously (always in EDT), you can just set some flag on handler start, clear it on finish, and check for flag value in your selection listener.
Community
IntelliJ IDEA Open API and Plugin Development
Customising Extend Selection
0 votes
Created
August 10, 2015 12:10
... so the selection listener is called synchronously inside the handler? ...Yes... The potential problem there is if the user has managed to move carets while maintaining the selection - is this p...
Community
IntelliJ IDEA Open API and Plugin Development
Customising Extend Selection
0 votes
Created
December 15, 2015 13:21
It's not available via API currently, editors that are 'file' editors (PsiAwareTextEditorImpl) always have overlaid scrollbars.
Community
IntelliJ IDEA Open API and Plugin Development
Using setVerticalScrollbarOrientation(EditorEx.VERTICAL_SCROLLBAR_LEFT) on editor from PsiAwareTextEditorImpl does not separate scrollbar from editor text
0 votes
«
First
‹
Previous
Next
›
Last
»