Adding SASS, SCSS and CoffeeScript Files to AckMate.
### Precursor [AckMate](https://github.com/protocool/AckMate) is a [TextMate](http://macromates.com/) plugin based on [Ack](http://betterthangrep.com/) that provides a **much** faster *"Search in project..."* function. If you've ever been bored looking at the beach ball when using the search built-in with TextMate, you should go grab it. However, AckMate (or more precisely, Ack) doesn't know about our new filetypes, like [SASS](http://sass-lang.com/), [SCSS](http://sass-lang.com/) and [CoffeeScript](http://coffeescript.org/). But it's painless to let Ack know that you're working with these files and to include them in its searches. Here's how. ### Adding Custom Filetypes to AckMate 1) Create a file called .ackrc in your home directory:
$ mate ~/.ackrc
2) Add the following lines to .ackrc:
--type-add=scss=.scss --type-add=sass=.sass --type-add=coffeescript=.coffee
3) Restart TextMate and away you go. ### Resources https://github.com/protocool/AckMate/wiki











