forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ackrc
64 lines (47 loc) · 806 Bytes
/
ackrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# only search with case sensitivity if there is mixed case
--smart-case
# follow symlinks
--follow
# Use Less to browse results
#--pager=less
# Add filters for file types
# Javascript
--type-set
js=.js
# CoffeeScript
--type-set
coffee=.coffee
# Both Javascript and CoffeeScript
--type-set
scripts=.js,.coffee
# CSS
--type-set
css=.css
# Sass, both syntaxes
--type-set
sass=.scss,.sass
# LESS
--type-set
less=.less
# All types of stylesheets
--type-set
styles=.css,.less,.sass,.scss
# Assets
--type-set
assets=.css,.less,.sass,.scss,.js,.coffee
--type-add
objc=.pch
--type-set
xcode=.pbxproj,.pbxuser,.perspectivev3
--type-set
ragel=.rl
--type-set
nib=.xib
--type-set
plist=.plist
--type-set
tmstuff=.tmproj,.tm_build_errors
--nonib
--notmstuff
--noxcode
--type-add=java=.groovy,.java,.gsp