Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Amd Layouni
Total activity
21
Last activity
September 27, 2017 09:31
Member since
May 16, 2017 23:11
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
6
Activity overview
Posts (6)
Comments (9)
Sort by votes
Recent activity
Votes
Created
September 27, 2017 09:31
After a few attempts to diagnose what could be causing the failure of my "Listen" debugger config, I just gave up given my limited Linux knowledge. I ended up creating two separate configurations, ...
Community
Scala
Launch jvm in debug mode with external tool under debug configuration
0 votes
Created
September 26, 2017 13:04
Thanks for the hints, the workflow I described in my initial post using the same port still works so there shouldn't be another process occupying it. Here's actually the full error I receive when I...
Community
Scala
Launch jvm in debug mode with external tool under debug configuration
0 votes
Created
September 26, 2017 09:49
I tried replacing server=n by server=y in the command line argument, the error disappeared but now I'm stuck with "Listening for transport dt_socket at address: 9990" and the tests never start. Set...
Community
Scala
Launch jvm in debug mode with external tool under debug configuration
0 votes
Created
September 26, 2017 09:38
Thanks a lot! I tried the "Listen" Debugger Mode, and updated my test command line argument as follows: -agentlib:jdwp=transport=dt_socket,server=n,address=alayouni-HP-Z420-Workstation:9990,suspend...
Community
Scala
Launch jvm in debug mode with external tool under debug configuration
0 votes
Created
June 08, 2017 18:28
This was the solution: MessageBusConnection connection = ApplicationManager.getApplication().getMessageBus().connect();connection.subscribe(EditorColorsManager.TOPIC, (editorColorsScheme) -> { /...
Community
IntelliJ IDEA Open API and Plugin Development
Plugin development - callback for settings change
0 votes
Edited
June 08, 2017 01:04
I ended up keping Task.Backgroundable approach, as for document changes I'm handling them through a fileContentReloaded listener. Note that I'm blocking user interaction with the editor in preview ...
Community
IntelliJ IDEA Open API and Plugin Development
Create task in background with modal progress bar on editor while processing content in background
0 votes
Created
June 05, 2017 23:00
I ended up splitting the large number of EDT calls into smaller chunks (100 calls per chunk), and made the background task sleep for a few milliseconds in between UI calls so to give the EDT a chan...
Community
IntelliJ IDEA Open API and Plugin Development
Create task in background with modal progress bar on editor while processing content in background
0 votes
Edited
June 05, 2017 22:06
Thanks for the hint. "What would happen if some code (in EDT) desires to change the editor's document? Would the UI freeze?" I'm clearing all the highlights / fold regions, and reworking them from ...
Community
IntelliJ IDEA Open API and Plugin Development
Create task in background with modal progress bar on editor while processing content in background
0 votes
Edited
May 17, 2017 21:31
Thanks for the quick reply., after a quick test it turns out folding serves my needs nicely, I mistakenly excluded it from my list of options very early.
Community
IntelliJ IDEA Open API and Plugin Development
Hide text in IntelliJ editor?
0 votes