roro co
- 活动总数 220
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 71
-
创建于 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 ... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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) ... -
创建于 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... -
创建于 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... -
创建于 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 -
创建于 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.