Aleksey Chemakin
- 活动总数 25
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 7
- 订阅数 7
-
创建于 WebStorm: how to disable angle brackets stuff highlight in JavaScript strings.
If you write `var a = '<bla bla bla>';`The string will have weird colors in editor.I have similar strings in my project, this strings have nothing to do with HTML or XML or any angle bracket stuff.... -
已编辑于 Has git - related stuff implementation more priority then JavaScript Autocompletion/Refactoring abilities for WebStorm team?
I do not use git - related stuff incorporated into IDE. I use git from command line and shell scripts, and sometimes I use git-specific GUI's. I do not trust IDE's implementation and like to contro... -
已编辑于 WebStorm does not autocomplete properties of object which returned by a function (many nodejs modules are without autocomplete).
// If function returs an object created on the fly, autocomplete will work.function fun1() { return { aaaa: 13 };}var obj1 = fun1();//obj1.aa // Autocomplete works.var obj2 = { bbbb: 15};obj2.cccc...