Aleksey Chemakin
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 7
- Subscriptions 7
-
Created 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.... -
Edited 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... -
Edited 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...