jaime
- Total activity 118
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 10
- Subscriptions 40
-
Created Is it relatively simple to add support for debugging Play Framework views to IntelliJ IDEA?
As far as I understand play framework views are groovy templates and AFAIK IntelliJ IDEA already supports groovy debugging. Is it simple to add support for debugging .html play framework views? Tha... -
Created Would it be possible to ship a "Play Framework Server" Run/Debug configuration?
It would be nice that IntelliJ IDEA ships a "Play Framework" Run/Debug configuration to avoid the newcomer confusion of creating a "Application" Run/Debug configuration with -Dapplication.path... V... -
Created Why does exist this validation: "Web resource directory should be locate under module root."
Hi, I'm wondering why if I have a project structure like this one:- parent-module---- out/classes---- child-moduleAnd then I configure a Web Facet in the "child-module" I'm unable to add "parent-mo... -
Created I'm unable to click balloon during debugging in PhpStorm
It is just one cm away but if I move the mouse pointer it disappears... I've been looking this behaviour since version 4... but I think... maybe because of my setting customizations... anyway have ... -
Created Incorrect path being shown after importing a module... is this the expected behaviour?
See the attachment, look next to the google-play-services_lib module in the project tab: C:\d\android\tests\gmapv2_and_async_tasks but it isn't the path for the module but for the project. Is this... -
Created IntelliJ compiler getting confused with uncompilable code in one liner comment
I have a class like the following:/** * From: JLS, 3.10.5 * */public class JlsStringLiterals { public static void main(String[] args) { // String foo = "\u000a"; }} If you see clearly... -
Created Can I display Stored procedures body from "Data source" window?
Hi, now I'm working with a small project with mysql stored procedures and I can see that IntelliJ IDEA succesfully displays stored procedures names (with parameters included) in the Data Source win... -
Created documentation for isset, list, array() right from the IDE
For documentation i have configured CTRL + Q it works for php built-in method except for list, isset, array(),etc I know they aren't exactly methods but it would be useful to have documentation pop... -
Created does Autocompletion of local variables in "Evaluate expression" dialog exists?
I want to know if there is such support in phpstorm to autocomplete php local variables in the evaluate expression window, I say this because if I stop in the debug mode with some local variables I... -
Created Jump to catch block for unchecked exception being thrown from a method call
say I have the following: try {throw new RuntimeException();} catch (Exception e) {}If I press CTRL+ ALT + F7 in the "throw" keyword IntelliJ will take me to the catch block, but what if I hav...