Compare commits

...

9 Commits

Author SHA1 Message Date
Arfon Smith
6d51117a91 Merge pull request #1593 from github/more-tmscopes
Add more TextMate scopes
2014-10-14 10:06:47 -05:00
Arfon Smith
848a1cc1e5 Minor bump 2014-10-14 10:06:38 -05:00
Adam Roben
9092dfdc7f Add a TextMate scope for Literate CoffeeScript 2014-10-14 10:50:39 -04:00
Adam Roben
d7fe0cc5c7 Add TextMate scopes for HTML variants 2014-10-14 10:41:19 -04:00
Adam Roben
15ec37d4bc Add a TextMate scope for Objective-C++ 2014-10-14 10:41:19 -04:00
Adam Roben
43cc701ac3 Add a TextMate scope for JSON 2014-10-14 10:41:19 -04:00
Adam Roben
7cb8357f73 Add a TextMate scope for YAML 2014-10-14 10:41:19 -04:00
Adam Roben
4b46bcf649 Add TextMate scopes for Sass/SCSS files 2014-10-14 10:41:19 -04:00
Arfon Smith
a954a6465e Update README.md 2014-10-14 09:29:45 -05:00
3 changed files with 11 additions and 2 deletions

View File

@@ -165,7 +165,7 @@ If you are the current maintainer of this gem:
0. Ensure that tests are green: `bundle exec rake test` 0. Ensure that tests are green: `bundle exec rake test`
0. Bump gem version in `lib/linguist/version.rb`. For example, [like this](https://github.com/github/linguist/commit/8d2ea90a5ba3b2fe6e1508b7155aa4632eea2985). 0. Bump gem version in `lib/linguist/version.rb`. For example, [like this](https://github.com/github/linguist/commit/8d2ea90a5ba3b2fe6e1508b7155aa4632eea2985).
0. Make a PR to github/linguist. For example, [#1238](https://github.com/github/linguist/pull/1238). 0. Make a PR to github/linguist. For example, [#1238](https://github.com/github/linguist/pull/1238).
0. Build a local gem: `gem build github-linguist.gemspec` 0. Build a local gem: `bundle exec rake build_gem`
0. Testing: 0. Testing:
0. Bump the Gemfile and Gemfile.lock versions for an app which relies on this gem 0. Bump the Gemfile and Gemfile.lock versions for an app which relies on this gem
0. Install the new gem locally 0. Install the new gem locally

View File

@@ -949,6 +949,7 @@ HTML:
HTML+Django: HTML+Django:
type: markup type: markup
tm_scope: text.html.django
group: HTML group: HTML
lexer: HTML+Django/Jinja lexer: HTML+Django/Jinja
extensions: extensions:
@@ -957,6 +958,7 @@ HTML+Django:
HTML+ERB: HTML+ERB:
type: markup type: markup
tm_scope: text.html.erb
group: HTML group: HTML
lexer: RHTML lexer: RHTML
aliases: aliases:
@@ -967,6 +969,7 @@ HTML+ERB:
HTML+PHP: HTML+PHP:
type: markup type: markup
tm_scope: text.html.php
group: HTML group: HTML
extensions: extensions:
- .phtml - .phtml
@@ -1102,6 +1105,7 @@ J:
JSON: JSON:
type: data type: data
tm_scope: source.json
group: JavaScript group: JavaScript
ace_mode: json ace_mode: json
searchable: false searchable: false
@@ -1293,6 +1297,7 @@ Literate Agda:
Literate CoffeeScript: Literate CoffeeScript:
type: programming type: programming
tm_scope: source.litcoffee
group: CoffeeScript group: CoffeeScript
lexer: Text only lexer: Text only
ace_mode: markdown ace_mode: markdown
@@ -1587,6 +1592,7 @@ Objective-C:
Objective-C++: Objective-C++:
type: programming type: programming
tm_scope: source.objc++
color: "#4886FC" color: "#4886FC"
aliases: aliases:
- obj-c++ - obj-c++
@@ -2084,6 +2090,7 @@ SAS:
SCSS: SCSS:
type: markup type: markup
tm_scope: source.scss
group: CSS group: CSS
ace_mode: scss ace_mode: scss
extensions: extensions:
@@ -2124,6 +2131,7 @@ Sage:
Sass: Sass:
type: markup type: markup
tm_scope: source.sass
group: CSS group: CSS
extensions: extensions:
- .sass - .sass
@@ -2598,6 +2606,7 @@ Xtend:
YAML: YAML:
type: data type: data
tm_scope: source.yaml
aliases: aliases:
- yml - yml
extensions: extensions:

View File

@@ -1,3 +1,3 @@
module Linguist module Linguist
VERSION = "3.3.0" VERSION = "3.3.1"
end end