diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 060b0d19..af1a7167 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -696,6 +696,11 @@ JSON: - .sublime-settings - .sublime-workspace +Jade: + group: HTML + type: markup + primary_extension: .jade + Java: type: programming ace_mode: java @@ -1284,6 +1289,11 @@ Scala: color: "#7dd3b0" primary_extension: .scala +Scaml: + group: HTML + type: markup + primary_extension: .scaml + Scheme: type: programming color: "#1e4aec" diff --git a/samples/Jade/hello.jade b/samples/Jade/hello.jade new file mode 100644 index 00000000..32c72739 --- /dev/null +++ b/samples/Jade/hello.jade @@ -0,0 +1,3 @@ +p. + Hello, + World! diff --git a/samples/Scaml/hello.scaml b/samples/Scaml/hello.scaml new file mode 100644 index 00000000..accbf543 --- /dev/null +++ b/samples/Scaml/hello.scaml @@ -0,0 +1,3 @@ +%p + Hello, + World!