roro co
- Total activity 220
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 71
-
Created How to specific selection start position and end position
for example, there is following code:1 line2 lineI wanna specific start position as (1,1)("1" in "1 line") and specific end position as(2, 7) ("e" in "2 line"),my question is How should I do that? -
Created duplicately def same class when i import plugin jar in "project structure > module"
see my screencast, there are exist two class org.jetbrains.plugins.ruby.ruby.lang.psi.impl.RFileImpl, their class name are same but their addresses are diff, It's because I import /home/roroco/.Int... -
Created How to append action after rename file
I wanna rename match test file name after rename lib file, my question is:how to invoke a input dialog and get its value?what is the class name of rename action -
Created How to get run and debug configuration list which didn't exist like "run configuration" popup
see my screencast https://www.youtube.com/watch?v=TidljhHusRY&feature=youtu.be, there is "Ex" in popup, but when i use following, i can't get "Ex" // Plugin.groovy package ro.testimport com.intel... -
Created undefined reference to `xdo_new' in clion but not in terminal
see my screencast https://www.youtube.com/watch?v=2d7CVgxHoHU&feature=youtu.be, i occurs this error in clion but not in terminalHere is my code:// main.cpp extern "C" {#include <xdo.h>}int main() {... -
Created What is AdText in setAdText
see https://github.com/JetBrains/intellij-community/blob/master/platform/platform-api/src/com/intellij/openapi/ui/popup/JBPopup.java -
Created How to invoke keystroke(like macro) in openapi
I hope finish some complex macro in java code not recorder -
Created Idea plugin doesn't work when adding build.gradle
screencast: https://www.youtube.com/watch?v=oXWrrttkXh8&feature=youtu.besee my screencast, when i build without build.gradle, "RoTest" > "ro plugin test", but when i add build.gradle, it show "RoTe... -
Created How to get list of run and debug configurations
see my screencast(http://youtu.be/QWl3wwQv2b4), I wanna know how to get all items in popup dialog -
Created Can i create a action in groovy file?
for instance, // Act.java public class Act extends AnAction { AnActionEvent e;}Can i change it to Act.groovy and use groovy func?