Henry Kerval

- Total activity 27
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
Henry Kerval commented, -
Henry Kerval commented, -
Henry Kerval created a post, AnsweredNodeJs debug await statements
When debugging a NodeJs code with "await", when I press F7 (Step into), instead of jumping to the method I jump into "async_hook" How to tell Webstorm not to debug NodeJs internal's code ? ex : le... -
Henry Kerval created a post, Class name in live templates
I'm trying to create a simple live template, for Javascript : //[$className$.$method$]-----------------------/**/$method$(){$end$}//[*] I want $className$, to contain by default the current classNa... -
Henry Kerval created a post, debug "step into" not working with await
When debugging JavaScript code when I put a breakpoint on a line with an await the StepInto doesn't work, the whole line is skipped (same as if I had done F8) ex : let vRes=await this.wGenerateCode(); -
Henry Kerval commented, -
-
-
Henry Kerval created a post, Answeredhow to use "CollapseExpandDocCommentsHandler"
I would like to have a shortcut to fold some specific regions (custom fold regions) - How to use CollapseExpandDocCommentsHandler ? - Do I have to create and register a FoldingBuilder ? (I've read ... -
Henry Kerval created a post, AnsweredConvert caret position to mouse position
How can convert a "caret position" (Column,Line) to a mouse position (pixels) ? I know how to retrieve the caret : final Editor vEditor = prEvent.getData(CommonDataKeys.EDITOR);assert vEditor != nu...