roro co
- Total activity 220
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 71
-
Edited rider: how to debug nunit single test in code
AnsweredFor ex, here is my code [Test]public void Test1(){ Console.WriteLine($"p1"); Assert.True(true);}[Test]public void Test2(){ Console.WriteLine($"p2"); Assert.True(true);} How to debug T... -
Edited Error:(28, 1) Groovyc: unable to resolve class com.jetbrains.nodejs.mocha.execution.MochaRunConfiguration
Answeredwhen i run run > build project in idea plugin project, I get this error ``` Error:(28, 1) Groovyc: unable to resolve class com.jetbrains.nodejs.mocha.execution.MochaRunConfiguration ``` I'm sure th... -
Created How to run indexing in code
I means ide bottom statusbar will show "Indexing ...", how to run it manually -
Created How to test idea plugin action in test unit?
Answeredfor example: in unit test, start sandbox idea, invoke action, how to do that? -
Created toggle between android layout editor "Text" and android layout editor "Design"
My idea is getting "Text" component and "Design" component and set focus, so how to do it? -
-
Created How to get "Watches" ContentImpl without anActionEvent.getData?
here is my code https://github.com/roroco/ro-idea/blob/get-watch-wio-event-getData/src/main/groovy/ro/idea/ToggleConsoleContent.groovy this action will toggle between "Debug Console > Console" an... -
Created How to force stop cmake building
here is my old quesiton https://intellij-support.jetbrains.com/hc/en-us/community/posts/206543499-How-to-run-cmake-with-clion-jar, I try to force stop cmake building, and I find a good solution: To... -
Created How to run cmake with clion.jar
I make clion plugin to run valgrind, so I need run cmake(cmake --build path/to/out --target target_name) to build specific target, how to run it, I don't understand /home/roroco/Downloads/clion-1.2... -
Created How to indent console out like normal console out
see my screenshot, my console out has not padding, but all other console out has, how to add it here is my console here is normal console the console white part has indent, how to add it in my co...