Sam Hulick

- 活动总数 84
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 26
-
创建于 Any way to convert single line of HTML into multiline?
Is there any quick key command to convert code like this:<div><p>Hello.</p></div>to this:<div> <p> Hello. </p></div> -
创建于 Bug - Javascript function parens spacing
Even though I have "function declaration parentheses" disabled, my Javascript still gets formatted like this:something('arg', function () {when it should be:something('arg', function() { -
创建于 CoffeeScript bugs in WebStorm 10
There are a couple bugs in WebStorm 10 with regards to CoffeeScript. Including:"Unused parameter" warnings which are incorrect, for example:Meteor.publish 'locations', (city) -> return Locations.f... -
创建于 Accessing Bootstrap class suggestions?
I've set up an Angular project via yeoman (generator-angular), and I can't seem to get my project to detect Bootstrap's classes:The reference to Bootstrap is as follows: <script src="bower_compo... -
创建于 How to use Source Code Pro font in WebStorm/PhpStorm?
I found a workaround where you copy the Source Code Pro font files into the $JAVA_HOME/lib/fonts folder. That worked for a while, but now for some reason my code looks like this:How can I get this ... -
创建于 PhpStorm does NOT include all the features of WebStorm
Just thought I'd throw this out there:JetBrains has been telling people that PhpStorm includes everything WebStorm does. This is not true. There's no Meteor support in PhpStorm.So unfortunately, th... -
创建于 How to redefine "New Project" templates?
When I make a new project and choose, for instance, Meteor, it sets up an initial project for me. But let's sayI wanted to change how that project template is structured (add extra files, etc). How... -
创建于 Major syntax detection bug
PhpStorm, for some reason, does not like this:<div id="mydiv"></div>It reports that "Selector matches unknown element mydiv". And if I click on the exclamation point, it offers to correct it to #my... -
创建于 HTML auto close tag is driving me crazy, how to disable?
I for the life of me cannot figure out how to disable this feature. E.g. if i type <div> it automatically adds </div> and puts the cursor in between. This would be fine, IF there were a simple way ... -
创建于 Detect unused CSS feature not working
For some reason, PhpStorm shows CSS IDs and classes in grey even though they exist in my HTML. Any idea why it's doing this?