forked from beyondgrep/ack2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConfigDefault.pm
275 lines (190 loc) · 5.54 KB
/
ConfigDefault.pm
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
package App::Ack::ConfigDefault;
use warnings;
use strict;
sub options {
my @options = split( /\n/, _options_block() );
@options = grep { /./ && !/^#/ } @options;
return @options;
}
sub _options_block {
return <<'HERE';
# This is the default ackrc for ack 2.0
# There are four different ways to match
# is: Match the filename exactly
# ext: Match the extension of the filename exactly
# match: Match the filename against a Perl regular expression
# firstlinematch: Match the first 80 characters of the first line
# of text against a Perl regular expression. This is only for
# the --type-add option.
# Directories to ignore
# Bazaar
--ignore-directory=is:.bzr
# Codeville
--ignore-directory=is:.cdv
# Interface Builder
--ignore-directory=is:~.dep
--ignore-directory=is:~.dot
--ignore-directory=is:~.nib
--ignore-directory=is:~.plst
# Git
--ignore-directory=is:.git
# Mercurial
--ignore-directory=is:.hg
# quilt
--ignore-directory=is:.pc
# Subversion
--ignore-directory=is:.svn
# Monotone
--ignore-directory=is:_MTN
# CVS
--ignore-directory=is:CVS
# RCS
--ignore-directory=is:RCS
# SCCS
--ignore-directory=is:SCCS
# darcs
--ignore-directory=is:_darcs
# Vault/Fortress
--ignore-directory=is:_sgbak
# autoconf
--ignore-directory=is:autom4te.cache
# Perl module building
--ignore-directory=is:blib
--ignore-directory=is:_build
# Perl Devel::Cover module's output directory
--ignore-directory=is:cover_db
# Files to ignore
# Backup files
--ignore-file=ext:bak
--ignore-file=match:/~$/
# Emacs swap files
--ignore-file=match:/^#.+#$/
# vi/vim swap files
--ignore-file=match:/[._].*\.swp$/
# core dumps
--ignore-file=match:/core\.\d+$/
# minified Javascript
--ignore-file=match:/[.]min[.]js$/
# Filetypes defined
# Perl http://perl.org/
--type-add=perl:ext:pl,pm,pod,t
--type-add=perl:firstlinematch:/#!.*\bperl/
# Makefiles http://www.gnu.org/s/make/
--type-add=make:ext:mk
--type-add=make:ext:mak
--type-add=make:is:makefile
--type-add=make:is:Makefile
--type-add=make:is:GNUmakefile
# Rakefiles http://rake.rubyforge.org/
--type-add=rake:is:Rakefile
# CMake http://www.cmake.org/
--type-add=cmake:is:CMakeLists.txt
--type-add=cmake:ext:cmake
# Actionscript
--type-add=actionscript:ext:as,mxml
# Ada http://www.adaic.org/
--type-add=ada:ext:ada,adb,ads
# ASP http://msdn.microsoft.com/en-us/library/aa286483.aspx
--type-add=asp:ext:asp
# ASP.Net http://www.asp.net/
--type-add=aspx:ext:master,ascx,asmx,aspx,svc
# Assembly
--type-add=asm:ext:asm,s
# Batch
--type-add=batch:ext:bat,cmd
# ColdFusion http://en.wikipedia.org/wiki/ColdFusion
--type-add=cfmx:ext:cfc,cfm,cfml
# Clojure http://clojure.org/
--type-add=clojure:ext:clj
# C
# .xs are Perl C files
--type-add=cc:ext:c,h,xs
# C header files
--type-add=hh:ext:h
# C++
--type-add=cpp:ext:cpp,cc,cxx,m,hpp,hh,h,hxx
# C#
--type-add=csharp:ext:cs
# CSS http://www.w3.org/Style/CSS/
--type-add=css:ext:css
# Delphi http://en.wikipedia.org/wiki/Embarcadero_Delphi
--type-add=delphi:ext:pas,int,dfm,nfm,dof,dpk,dproj,groupproj,bdsgroup,bdsproj
# Emacs Lisp http://www.gnu.org/software/emacs
--type-add=elisp:ext:el
# Erlang http://www.erlang.org/
--type-add=erlang:ext:erl,hrl
# Fortran http://en.wikipedia.org/wiki/Fortran
--type-add=fortran:ext:f,f77,f90,f95,f03,for,ftn,fpp
# Google Go http://golang.org/
--type-add=go:ext:go
# Groovy http://groovy.codehaus.org/
--type-add=groovy:ext:groovy,gtmpl,gpp,grunit,gradle
# Haskell http://www.haskell.org/
--type-add=haskell:ext:hs,lhs
# HTML
--type-add=html:ext:htm,html
# Java http://www.oracle.com/technetwork/java/index.html
--type-add=java:ext:java,properties
# JavaScript
--type-add=js:ext:js
# JSP http://www.oracle.com/technetwork/java/javaee/jsp/index.html
--type-add=jsp:ext:jsp,jspx,jhtm,jhtml
# Common Lisp http://common-lisp.net/
--type-add=lisp:ext:lisp,lsp
# Lua http://www.lua.org/
--type-add=lua:ext:lua
# Objective-C
--type-add=objc:ext:m,h
# Objective-C++
--type-add=objcpp:ext:mm,h
# OCaml http://caml.inria.fr/
--type-add=ocaml:ext:ml,mli
# Parrot http://www.parrot.org/
--type-add=parrot:ext:pir,pasm,pmc,ops,pod,pg,tg
# PHP http://www.php.net/
--type-add=php:ext:php,phpt,php3,php4,php5,phtml
--type-add=php:firstlinematch:/#!.*\bphp/
# Plone http://plone.org/
--type-add=plone:ext:pt,cpt,metadata,cpy,py
# Python http://www.python.org/
--type-add=python:ext:py
--type-add=python:firstlinematch:/#!.*\bpython/
# R http://www.r-project.org/
--type-add=rr:ext:R
# Ruby http://www.ruby-lang.org/
--type-add=ruby:ext:rb,rhtml,rjs,rxml,erb,rake,spec
--type-add=ruby:is:Rakefile
--type-add=ruby:firstlinematch:/#!.*\bruby/
# Scala http://www.scala-lang.org/
--type-add=scala:ext:scala
# Scheme http://groups.csail.mit.edu/mac/projects/scheme/
--type-add=scheme:ext:scm,ss
# Shell
--type-add=shell:ext:sh,bash,csh,tcsh,ksh,zsh
--type-add=shell:firstlinematch:/(?:ba|t?c|k|z)?sh\b/
# Smalltalk http://www.smalltalk.org/
--type-add=smalltalk:ext:st
# SQL http://www.iso.org/iso/catalogue_detail.htm?csnumber=45498
--type-add=sql:ext:sql,ctl
# Tcl http://www.tcl.tk/
--type-add=tcl:ext:tcl,itcl,itk
# LaTeX http://www.latex-project.org/
--type-add=tex:ext:tex,cls,sty
# Template Toolkit http://template-toolkit.org/
--type-add=tt:ext:tt,tt2,ttml
# Visual Basic
--type-add=vb:ext:bas,cls,frm,ctl,vb,resx
# Verilog
--type-add=verilog:ext:v,vh,sv
# VHDL http://www.eda.org/twiki/bin/view.cgi/P1076/WebHome
--type-add=vhdl:ext:vhd,vhdl
# Vim http://www.vim.org/
--type-add=vim:ext:vim
# XML http://www.w3.org/TR/REC-xml/
--type-add=xml:ext:xml,dtd,xsl,xslt,ent
--type-add=xml:firstlinematch:/<[?]xml/
# YAML http://yaml.org/
--type-add=yaml:ext:yaml,yml
HERE
}
1;