Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New languages: Modula-3 and Quake #4139

Merged
merged 6 commits into from
Jul 21, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,9 @@
[submodule "vendor/grammars/lua.tmbundle"]
path = vendor/grammars/lua.tmbundle
url = https://github.com/textmate/lua.tmbundle
[submodule "vendor/grammars/m3"]
path = vendor/grammars/m3
url = https://github.com/newgrammars/m3
[submodule "vendor/grammars/make.tmbundle"]
path = vendor/grammars/make.tmbundle
url = https://github.com/textmate/make.tmbundle
Expand Down Expand Up @@ -739,6 +742,9 @@
[submodule "vendor/grammars/python-django.tmbundle"]
path = vendor/grammars/python-django.tmbundle
url = https://github.com/textmate/python-django.tmbundle
[submodule "vendor/grammars/quake"]
path = vendor/grammars/quake
url = https://github.com/newgrammars/quake
[submodule "vendor/grammars/r.tmbundle"]
path = vendor/grammars/r.tmbundle
url = https://github.com/textmate/r.tmbundle
Expand Down
4 changes: 4 additions & 0 deletions grammars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,8 @@ vendor/grammars/logtalk.tmbundle:
- source.logtalk
vendor/grammars/lua.tmbundle:
- source.lua
vendor/grammars/m3:
- source.modula-3
vendor/grammars/make.tmbundle:
- source.makefile
vendor/grammars/mako-tmbundle:
Expand Down Expand Up @@ -613,6 +615,8 @@ vendor/grammars/protobuf-tmbundle:
vendor/grammars/python-django.tmbundle:
- source.python.django
- text.html.django
vendor/grammars/quake:
- source.quake
vendor/grammars/r.tmbundle:
- source.r
- text.tex.latex.rd
Expand Down
22 changes: 22 additions & 0 deletions lib/linguist/languages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2831,6 +2831,17 @@ Modula-2:
tm_scope: source.modula2
ace_mode: text
language_id: 234
Modula-3:
type: programming
extensions:
- ".i3"
- ".ig"
- ".m3"
- ".mg"
color: "#223388"
ace_mode: text
tm_scope: source.modula-3
language_id: 564743864
Module Management System:
type: programming
extensions:
Expand Down Expand Up @@ -3745,6 +3756,17 @@ QMake:
- qmake
ace_mode: text
language_id: 306
Quake:
type: programming
filenames:
- m3makefile
- m3overrides
extensions:
- ".tmpl"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The original post is missing a search link for this extension.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’ll add any missing info later.

Copy link
Author

@ajcz ajcz May 24, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added a search link for .tmpl files, as well as other previously missing info. @pchaigno

color: "#882233"
ace_mode: text
tm_scope: source.quake
language_id: 375265331
R:
type: programming
color: "#198CE7"
Expand Down
Loading