Jamie Echlin
- Total activity 157
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 79
-
Created infer actual method return type
AnsweredI'm having a conceptual (and programming) difficulty. I need to infer that the actual return value from a groovy script is compatible with the Script.run() method. I see different ways of handling... -
Created httpRequestHandler single request?
Hi - With the httpRequestHandler extension point it seems it only handles a single request at a time. This is easily demonstrated by a simple httpRequestHandler with a sleep in it, and sending sev... -
Created completions contributor for strings
Hi, I would like to provide some suggestions for a given method, where only certain strings are applicable. Eg: class Bar { void foo(String str) {}}// usagenew Bar().foo(<caret>) // should suggest:... -
Created case-sensitivity issue with plugins in gradle build
Morning... Strange problem here. I have the follow plugin requirements in the intellij {} block in my build.gradle: plugins = ["Groovy", "maven"] This produces the following error: FAILURE: Build f... -
Created idea does not write iml files in headless mode
AnsweredHi... I have some code that imports a project from a pom file. In headed mode this creates the project metadata files and an iml file for each module, as expected. However in headless mode, no iml ... -
Created possible to get active task status and text
Hi, Can I get any active background task(s), as shown in the status bar. I'm interested in getting the current percentage completion and the text. I have tried many things, really, to no avail. che... -
Created run when maven project completed opening
Hi... In my plugin I am writing a new pom file, then opening it with ProjectUtil.openOrImport(/path/to/pom). It works fine but I need to know when the project is completely initialised, ie all mave... -
Created wait for DaemonCodeAnalyzer to complete pass on file
AnsweredMorning... I'm using DaemonCodeAnalyzerEx to retrieve the linting information from the editor, such as deprecations, unused imports and so on. I am setting text in the current document in the edit... -
Created using plugin classes with gradle build
AnsweredHi all, I've been working on a plugin using the "plugin module" type. For reasons of portability I converted it to the idea gradle plugin system, as it makes it easier to add new dependencies and s...