roro co
- Total activity 220
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 71
-
Created How to implement a simple debugger for programming lang
for instance:# ex.my_ext a = 1b = 1 c = 1"" # set breakpoint on itI hope implement a debugger to implement following features:- debugger stop on breakpoint on last line- watches can see the values ... -
Created Is there to invoke "scroll to the end" button in console
see my screencast,when i use rspec in ruby, idea always auto scroll to the top, if output is too long, i hope "scroll to the end" of output to see what happen(I can't find it in keymap)Attachment(s... -
Created Can't activate tool window right now
following is my code:ToolWindow dbg = ToolWindowManager.getInstance(e.getProject()).getToolWindow("Debug");dbg.activate(null, true, true);int n = 0;while (true) { if (dbg.isActive()) { br... -
Created how to get "debugger" and "console" ContentManager
my old question is in there https://devnet.jetbrains.com/thread/458587, i think if i can directly get "debugger" and "console" ContentManager,i can toggle them with a more simple way rather than Ne... -
Created Can openapi bind a shortcut with inserted str?
In ruby file, when i select "a_selection", I hope hit "#" to change it to "#{a_selection}", this action is very frequently used when i code, so i think use "live template" or "macro" or "external t... -
Created getUserData always return null
this is my test project: https://github.com/roroco/getUserData-return-nullsee my screencast, i get following// c.getUserData(new Key<RunContentDescriptor>("Descriptor"))// => null// ((ContentImpl) ... -
Created How to create a new configuration for custom runner
in short: i hope to create runconfiguration to run simple bin/runner with argumentfor instance: exist following files:bin/serverbin/clientlib/a_filein terminal i can do:bin/server startbin/client l... -
Created How to focus tool window
Here is my old https://devnet.jetbrains.com/message/5528198#5528198, i wanna toggle "debugger" and "console" with one key, the last answer is use "alt+5" to tool window, and use "alt+left/right" to... -
Created what is ExecutionTarget
i see this post https://devnet.jetbrains.com/message/5487853#5487853, and get "targets" is always "default_target", my question is: when the target is non-default_target -
Created Can make a action with groovy
today, i try to extend gradle with groovy, i find it's very similar with java, if i can, please give me a simple example written by groovy.