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

Add support for Elvish #5940

Merged
merged 2 commits into from
Sep 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,9 @@
[submodule "vendor/grammars/elixir-tmbundle"]
path = vendor/grammars/elixir-tmbundle
url = https://github.com/elixir-lang/elixir-tmbundle
[submodule "vendor/grammars/elvish"]
path = vendor/grammars/elvish
url = https://github.com/elves/elvish.git
[submodule "vendor/grammars/erlang.tmbundle"]
path = vendor/grammars/erlang.tmbundle
url = https://github.com/textmate/erlang.tmbundle
Expand Down
2 changes: 2 additions & 0 deletions grammars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,8 @@ vendor/grammars/elixir-tmbundle:
- source.elixir
- text.elixir
- text.html.elixir
vendor/grammars/elvish:
- source.elvish
vendor/grammars/erlang.tmbundle:
- source.erlang
- text.html.erlang.yaws
Expand Down
10 changes: 10 additions & 0 deletions lib/linguist/languages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1715,6 +1715,16 @@ Elm:
codemirror_mode: elm
codemirror_mime_type: text/x-elm
language_id: 101
Elvish:
type: programming
ace_mode: text
extensions:
- ".elv"
interpreters:
- elvish
tm_scope: source.elvish
color: "#55BB55"
language_id: 570996448
Emacs Lisp:
type: programming
tm_scope: source.emacs.lisp
Expand Down
Loading