Sam Hulick
- Total activity 84
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 26
-
Created Is there a way to reformat a multi-line list into a single line, and vice-versa?
Given this code: const x = [ 2, 3, 8,]; Is there a way to quickly reformat it (with a keystroke) to this? const x = [2, 3, 8]; And also take a single line like the one above and break it out int... -
Created "Reformat Code" command should respect right margin
If I set my right margin to 80 chars in Preferences > Code Style, I noticed when I reformat my code that I have split to multiple lines, WebStorm will change the code and put it on one line so it g... -
Created Other apps making WebStorm sluggish? (Mac OS)
Has anyone else noticed WebStorm become sluggish based on what other apps are doing? For instance, if I'm on a web page that has some CSS animation going on, WebStorm becomes sluggish. Or if I have... -
Created How to change colors in search results, project file list?
How do I change the colors of the text in the left and bottom panes? It's pretty much unreadable. (see image) -
Created WebStorm sluggish while typing?
I'm wondering if anyone else is experiencing sluggishness while typing. I'm on a 2010 Mac Pro, so it's not my machine for sure! -
Created Bug in WebStorm 10.0.4, Mac OS
In 10.0.4 on Mac, on the welcome screen, you can no longer delete recent projects. Mousing over them used to reveal an "X" to the right that you could click. That's gone now. -
Created Quote closing not working with jQuery multiple selectors
See animated GIF below (might have to click to view). Writing something like $('#item1') works fine, but it has trouble with $('#item1, #item2'). -
Created WebStorm not reloading code if edited outside IDE
For some reason, WebStorm is being kind of bad about reloading the code view if the file has been changed outside WebStorm. I have to forcibly do a "Reload From Disk". But sometimes it reloads thou... -
Created Faster way to surround a block of HTML with tags, and auto indent?
Right now if I want to surround a block fo HTML with a DIV for example, it takes two steps. I have to wrap the code, and then select it and reformat.I'm wondering if there's a faster way than this:... -
Created How to access jQuery/Bootstrap/etc definitions in Meteor?
Since Meteor apps don't use typical script elements to load jQuery, Bootstrap, etc, how can I include these in the IDE so that when I use things like:$('#location').modal('show');It doesn't underli...