Commit Graph

846 Commits

Author SHA1 Message Date
Peter Waller
e76c4dbc8c langauges.yml: Add python syntax highlighting to waf's wscript files 2012-05-10 15:47:27 +02:00
Joshua Peek
285c9b4c60 Fix xslt mime type 2012-05-09 10:59:00 -05:00
Joshua Peek
2cbf428176 Use XSLT lexer 2012-05-09 10:41:11 -05:00
Joshua Peek
2729f2200d Fix 1.9 string grep 2012-05-09 09:58:55 -05:00
Joshua Peek
35fe44549e Fix empty .m file 2012-05-09 09:52:14 -05:00
Joshua Peek
f56fbffa6d Merge pull request #162 from horchler/detect-matlab
More robust heuristics for .m files and 3 new Matlab tests. Finally.
2012-05-08 16:58:53 -07:00
Andrew D. Horchler
354e1fc85e More robust heuristics for .m files and 3 new Matlab tests. Support for Obj-C detection fully intact; all tests pass. Detection of Obj-C keywords @implementation, @property, @interface, and @synthesize removed to avoid possible conflicts with user-created Matlab function handles. Only @end is needed, which is not valid in Matlab. Matlab class files supported. Comments preceded by whitespace detected for Obj-C and Matlab.
Signed-off-by: Andrew D. Horchler <adh9@case.edu>
2012-05-08 18:31:18 -04:00
Joshua Peek
f0eace7f86 Merge pull request #157 from thestinger/detect-arch-linux-pkgbuild
add detection for Arch Linux PKGBUILDs
2012-05-08 07:42:06 -07:00
Daniel Micay
be42a8411b add detection for Arch Linux PKGBUILDs 2012-05-08 07:39:48 -04:00
Joshua Peek
aa7c8497b1 Merge pull request #151 from aseemk/streamlinejs-support
Add ._js & ._coffee extensions for Streamline.js.
2012-05-07 19:44:14 -07:00
Joshua Peek
a9e1f3822f Merge pull request #160 from bakkdoor/master
Added Fakefile to Fancy's filenames list
2012-05-07 19:41:37 -07:00
Joshua Peek
774f776ab4 Merge pull request #161 from BaiGang/master
Add .pm6 to  Perl extensions for Perl6
2012-05-07 19:39:43 -07:00
Joshua Peek
b618539c8b Ensure ext/ dir isn't ignored 2012-05-05 21:39:41 -05:00
BAI Gang
9e995fb3e5 Added .pm6 to Perl extensions. Conventionally, some Perl6 modules use pm6 as extension to differentiate from the currently common Perl 5 modules. 2012-05-02 13:01:48 +08:00
Vicent Martí
d1297f626e Update tests accordingly 2012-04-29 16:05:30 -07:00
Vicent Martí
4d984e9622 Colorize all files, even if they are generated 2012-04-29 16:01:02 -07:00
Christopher Bertels
cd24864273 added Fakefile to Fancy's filenames list 2012-04-27 10:45:06 +02:00
Joshua Peek
c3d6fc5af8 Colors! 2012-04-19 17:25:16 -05:00
Joshua Peek
dd6285164d Remove redundant lexer definitions 2012-04-19 16:38:49 -05:00
Joshua Peek
8bb5f7fd4c Remove redundant primary extension definitions 2012-04-19 16:34:35 -05:00
Brian Doll
2d106eefe9 Merge pull request #156 from igrigorik/detect-dart
Detect Dart
2012-04-18 16:36:25 -07:00
Joshua Peek
c444c25b27 Disable puppet lexer 2012-04-17 09:56:30 -05:00
Vicent Martí
4ab7bb2cbe Too long 2012-04-09 15:38:26 -07:00
Ilya Grigorik
cb715e2092 add fixture file for Dart 2012-04-09 14:41:01 -07:00
Ilya Grigorik
a3dc9fb138 add detection for Dart 2012-04-09 14:38:43 -07:00
Vicent Martí
b0dba20087 Bump Pygments again 2012-04-09 14:26:24 -07:00
Vicent Martí
23c052260c Use an even newer Pygments 2012-04-09 13:53:30 -07:00
Vicent Martí
a36e032ced Merge pull request #155 from github/puppet-augeas-lexers
Use new lexers for Puppet & Augeas files
2012-04-09 11:52:49 -07:00
Tim Sharpe
5bfe848e22 Merge branch 'master' into puppet-augeas-lexers 2012-04-09 11:49:01 -07:00
Vicent Martí
633ef5213d Sort extensions by name 2012-04-09 20:46:29 +02:00
Vicent Martí
01c93453a7 Bump the version of Pygments 2012-04-09 20:40:22 +02:00
Vicent Martí
95ec95fdac Add DCPU-16 assembly 2012-04-09 20:28:53 +02:00
Vicent Martí
88e49ce020 Merge pull request #152 from pao/detect-julia-language
Added detection for the Julia language.
2012-04-09 11:28:03 -07:00
Tim Sharpe
3ef7a78c2b Use new lexers for Puppet & Augeas files 2012-04-09 11:07:55 -07:00
Patrick O'Leary
4f0b457287 Updated Julia language with lexer and added tests 2012-04-04 21:28:29 -05:00
Aseem Kishore
17adccc844 Regression fix: ensure .coffee is primary ext.
(The primary extension by default is the first extension, but the extensions
need to be in alphabetical order, and _coffee comes before coffee.)
2012-04-03 14:56:11 -04:00
Patrick O'Leary
52b9274991 Added detection for the Julia language. 2012-04-02 23:20:27 -05:00
Aseem Kishore
54e81dd8fb Add ._js & ._coffee extensions for Streamline.js.
Streamline.js by Bruno Jouhier (@Sage) is a library/tool that lets you write
synchronous-looking JavaScript/CoffeeScript, and have it compile to Node-style
asynchronous JavasScript/CoffeeScript. (It's amazing and super elegant.)

https://github.com/Sage/streamlinejs

From the start, Streamline was designed to be exactly JavaScript/CoffeeScript,
so that it works with existing editors and tools. No new keywords or syntax --
it simply reserves `_` as a function parameter name.

Streamline files have thus kept `.js` and `.coffee` as extensions, so that no
changes need to be made to tools; Streamline has just used the convention of
ending file basenames with `_`, like `foo_.js` or `foo_.coffee`.

Unfortunately, to get the most optimal Node.js integration, with on-the-fly
compilation (like CoffeeScript), files now need to have their own extension.
So Bruno has decided to make `._js` and `._coffee` the extensions of choice.

The good news is that the language is still exactly JavaScript/CoffeeScript;
it's only the extension that's changed. It's simple to add these extensions
into our editors, but I'm wondering if we can add this to GitHub too. =)

This change is super simple and shouldn't affect any other language, so I hope
you guys are open to it. Thanks for your consideration!
2012-04-02 19:56:28 -04:00
Joshua Peek
8cbfc48391 Merge pull request #149 from github/ignore-samples
Ignore any root dir named samples
2012-03-28 15:00:37 -07:00
Paul Betts
2d02b41c1d hwhoops 2012-03-29 10:13:50 +13:00
Paul Betts
76df4c7ca6 Ignore any root dir named samples 2012-03-29 10:03:18 +13:00
Joshua Peek
8b3ebc36fb Merge pull request #146 from trq/add-php-syntax-for-phakefiles
Adding PHP syntax highlighting for Phake
2012-03-28 09:41:30 -07:00
Joshua Peek
19f2ee40a5 New lexers in 1.5 2012-03-28 11:40:14 -05:00
Martin d'Allens
dc145ff715 Set lexer for VHDL language.
Conflicts:

	test/test_blob.rb
2012-03-28 11:37:25 -05:00
Joshua Peek
f029db563c Merge pull request #144 from shortstuffsushi/patch-1
Update to vendor.yml to include the ExtJS Javscript Framework
2012-03-28 09:34:39 -07:00
Joshua Peek
5eaed34a38 Merge pull request #135 from ecere/master
Added eC and Ecere project (JSON, .epj) to languages.yml
2012-03-28 09:32:51 -07:00
Joshua Peek
400df3ad46 Merge pull request #141 from semperos/lsp-extension
Add .lsp as an extension for Common Lisp
2012-03-28 09:26:24 -07:00
Joshua Peek
791761b19f kt extension is real now 2012-03-28 11:25:36 -05:00
Joshua Peek
61d2e8c383 Merge pull request #140 from jstrachan/detect-kotlin-language
Added detection for the Kotlin language
2012-03-28 09:21:19 -07:00
Joshua Peek
7377ace1ee Merge pull request #138 from jesusaurus/817b36ca61b80fe61c243f5eaf964e5cb78885c6
Add Modulefile to Puppet
2012-03-28 09:19:38 -07:00