riju/langs
Radon Rosborough 2daa11c7aa Import all language configs into YAML
This was an absolutely disgusting operation. Here's the commands I
used to do it (see <https://docs.gomplate.ca/> for the tool):

$ node
> require('fs').writeFile('langs.json', JSON.stringify(require('./langs').langs), console.log)
$ ./gomplate -c .=langs.json -f template.yaml > langs.yaml
$ cat langs.json | jq 'keys[]' -r L | while read lang; do cat langs.yaml | sed -n "/^ #START $lang\$/,/^ #END $lang\$/p" | tail -n+2 | head -n-1 | sed 's/^  //' > langs/$lang.yaml; done

I had some difficulty getting valid YAML to be generated, so I found
the tool at <http://www.yamllint.com/> to be helpful in identifying
errors.

For validation that nothing important had changed in the
transformation, I used <http://www.jsondiff.com/> to compare
langs.json against the output of this command:

$ ./gomplate -c .=langs.json -f template.yaml | node yaml2json.js | jq '(.. | select(type == "string")) |= sub("\n+$";"") | (.. | select(.template?) | .template?) |= (.+"\n") | (.. | select(.format?.input?) | .format?.input?) |= (.+"\n")'

Here's yaml2json.js:

import fs from "fs";
import YAML from "yaml";

console.log(JSON.stringify(YAML.parse(fs.readFileSync(0, "utf-8")), null, 2));

And here's the template.yaml, which is approximately the worst thing
ever:

{{ range . }}
"{{ .id }}":
 #START {{ .id }}
  id: "{{ .id }}"
{{ if has . "aliases" }}  aliases:
{{ range .aliases }}    - "{{ . }}"
{{ end }}{{ end }}  name: "{{ .name }}"
{{ if has . "monacoLang" }}  monacoLang: {{ .monacoLang }}
{{ end }}{{ if has . "info" }}
  info:
{{ if has .info "impl" }}    impl: "{{ .info.impl }}"
{{ end }}{{ if has .info "version" }}    version: "{{ .info.version }}"
{{ end }}    year: {{ .info.year }}
    desc: "{{ .info.desc }}"
{{ if eq "string" (printf "%T" .info.ext) }}    ext: {{ .info.ext }}
{{ else if eq 0 (len .info.ext) }}    ext: []
{{ else }}    ext:
{{ range .info.ext }}      - {{ . }}
{{ end }}{{ end }}    web:
{{ if has .info.web "wiki" }}      wiki: "{{ .info.web.wiki }}"
{{ end }}{{ if has .info.web "esolang" }}      esolang: "{{ .info.web.esolang }}"
{{ end }}{{ if has .info.web "home" }}      home: "{{ .info.web.home }}"
{{ end }}{{ if has .info.web "impl" }}      impl: "{{ .info.web.impl }}"
{{ end }}      source: {{ if eq "string" (printf "%T" .info.web.source) }}"{{ .info.web.source }}"
{{ else }}null
{{ end }}{{ if eq "string" (printf "%T" .info.category) }}    category: {{ .info.category }}
{{ else if eq 0 (len .info.category) }}    category: []
{{ else }}    category:
{{ range .info.category }}      - {{ . }}
{{ end }}{{ end }}{{ if eq "string" (printf "%T" .info.mode) }}    mode: {{ .info.mode }}
{{ else if eq 0 (len .info.mode) }}    mode: []
{{ else }}    mode:
{{ range .info.mode }}      - {{ . }}
{{ end }}{{ end }}{{ if eq "string" (printf "%T" .info.platform) }}    platform: {{ .info.platform }}
{{ else if eq 0 (len .info.platform) }}    platform: []
{{ else }}    platform:
{{ range .info.platform }}      - {{ . }}
{{ end }}{{ end }}{{ if eq "string" (printf "%T" .info.syntax) }}    syntax: {{ .info.syntax }}
{{ else if eq 0 (len .info.syntax) }}    syntax: []
{{ else }}    syntax:
{{ range .info.syntax }}      - {{ . }}
{{ end }}{{ end }}{{ if eq "string" (printf "%T" .info.typing) }}    typing: {{ .info.typing }}
{{ else if eq 0 (len .info.typing) }}    typing: []
{{ else }}    typing:
{{ range .info.typing }}      - {{ . }}
{{ end }}{{ end }}{{ if eq "string" (printf "%T" .info.paradigm) }}    paradigm: {{ .info.paradigm }}
{{ else if eq 0 (len .info.paradigm) }}    paradigm: []
{{ else }}    paradigm:
{{ range .info.paradigm }}      - {{ . }}
{{ end }}{{ end }}{{ if eq "string" (printf "%T" .info.usage) }}    usage: {{ .info.usage }}
{{ else if eq 0 (len .info.usage) }}    usage: []
{{ else }}    usage:
{{ range .info.usage }}      - {{ . }}
{{ end }}{{ end }}{{ end }}{{ if or (has . "daemon") (has . "setup") }}
{{ end }}{{ if has . "daemon" }}  daemon: |
{{ .daemon | indent 4 }}
{{ end }}{{ if has . "setup" }}  setup: |
{{ .setup | indent 4 }}
{{ end }}{{ if has . "repl" }}
  repl: |
{{ .repl | indent 4 }}
{{ end }}{{ if has . "input" }}{{ if .input | strings.Contains "\x1b" }}  input: "{{ .input | strings.ReplaceAll "\x1b" "\\x1b" }}"
{{ else }}  input: |{{ if .input | regexp.Match "^\\s" }}2{{ end }}
{{ .input | indent 4 }}
{{ end }}{{ end }}{{ if has . "output" }}  output: |
{{ .output | indent 4 }}
{{ end }}
  main: "{{ .main }}"
  template: {{ if eq .id "whitespace" }}{{ .template | strings.Quote }}
{{ else }}|{{ if .template | regexp.Match "^\\s" }}2{{ end }}
{{ .template | indent 4 }}{{ end }}{{ if has . "prefix" }}  prefix: |
{{ .prefix | indent 4 }}
{{ end }}{{ if has . "suffix" }}  suffix: |
{{ .suffix | indent 4 }}
{{ end }}{{ if has . "createEmpty" }}  createEmpty: "{{ .createEmpty }}"
{{ end }}
{{ if has . "compile" }}  compile: |
{{ .compile | indent 4 }}
{{ end }}  run: |
{{ .run | indent 4 }}
{{ if has . "helloInput" }}  helloInput: |
{{ .helloInput | indent 4 }}
{{ end }}{{ if has . "hello" }}  hello: |
{{ .hello | indent 4 }}
{{ end }}{{ if has . "helloMaxLength" }}  helloMaxLength: {{ .helloMaxLength }}
{{ end }}{{ if has . "runReplInput" }}  runReplInput: |
{{ .runReplInput | indent 4 }}
{{ end }}{{ if has . "runReplOutput" }}  runReplOutput: |
{{ .runReplOutput | indent 4 }}
{{ end }}{{ if has . "scope" }}
  scope:
    code: |
{{ .scope.code | indent 6 }}
{{ if has .scope "after" }}    after: "{{ .scope.after }}"
{{ end }}{{ if has .scope "input" }}{{ if .scope.input | strings.Contains "\x1b" }}    input: "{{ .scope.input | strings.ReplaceAll "\x1b" "\\x1b" }}"
{{ else }}    input: |
{{ .scope.input | indent 6 }}
{{ end }}{{ end }}{{ if has .scope "output" }}    output: |
{{ .scope.output | indent 6 }}
{{ end }}{{ end }}{{ if has . "format" }}
  format:
    run: |
{{ .format.run | indent 6 }}
{{ if has .format "input" }}    input: |
{{ .format.input | indent 6 }}{{ end }}{{ if has .format "output" }}    output: |
{{ .format.output | indent 6 }}{{ end }}{{ end }}{{ if has . "pkg" }}
  pkg:
    install: |
{{ .pkg.install | indent 6 }}
{{ if has .pkg "uninstall" }}
    uninstall: |
{{ .pkg.uninstall | indent 6 }}
{{ end }}{{ if has .pkg "all" }}
    all: |
{{ .pkg.all | indent 6 }}
{{ end }}{{ if has .pkg "search" }}
    search: |
{{ .pkg.search | indent 6 }}
{{ end }}{{ end }}{{ if has . "lsp" }}
  lsp:
{{ if has .lsp "setup" }}    setup: |
{{ .lsp.setup | indent 6 }}
{{ end }}    start: |
{{ .lsp.start | indent 6 }}
{{ if has .lsp "disableDynamicRegistration" }}    disableDynamicRegistration: {{ .lsp.disableDynamicRegistration }}
{{ end }}{{ if has .lsp "init" }}    init:
{{ .lsp.init | data.ToYAML | indent 6 }}{{ end }}{{ if has .lsp "config" }}    config: {{ .lsp.config | data.ToYAML }}{{ end }}{{ if has .lsp "lang" }}    lang: "{{ .lsp.lang }}"
{{ end }}{{ if has .lsp "code" }}    code: {{ .lsp.code | strings.Quote }}
{{ end }}{{ if has .lsp "after" }}    after: {{ .lsp.after | strings.Quote }}
{{ end }}{{ if has .lsp "item" }}    item: {{ .lsp.item | strings.Quote }}
{{ end }}{{ end }}{{ if has . "skip" }}
  skip:
{{ range .skip }}    - {{ . }}
{{ end }}{{ end }} #END {{ .id }}
{{ end }}
2021-01-02 10:14:26 -08:00
..
><>.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
a+.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
abc.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ada.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
afnix.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
algol.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ante.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
antecards.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
apl.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
arm.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
asciidoc.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
aspectc++.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
aspectj.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
asymptote.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ats.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
awk.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
bash.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
basic.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
battlestar.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
bc.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
beanshell.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
beatnik.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
befunge.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
blc.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
boo.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
brainf.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
bython.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
c++.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
c.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
cat.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ceylon.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
chef.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
cil.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
clean.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
clojure.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
clojurescript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
cmake.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
cmd.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
cobol.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
coffeescript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
commonlisp.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
confluence.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
crystal.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
csharp.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
curry.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
d.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
dafny.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
dart.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
dc.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
dhall.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
dogescript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
dokuwiki.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
dylan.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ec.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
elixir.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
elm.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
elvish.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
emacs.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
emojicode.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
entropy.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
erlang.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
euphoria.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
factor.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
false.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
fish.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
flex.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
forth.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
fortran.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
fsharp.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
gambas.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
gap.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
gdb.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
gel.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
gnuplot.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
go.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
golfscript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
grass.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
groovy.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
hack.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
haskell.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
haxe.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
hcl.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
hexagony.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
hmmm.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
hy.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
icon.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
idris.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ink.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
intercal.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ioke.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
j.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
jasmin.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
java.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
javascript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
jq.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
jsf.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
julia.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
kalyn.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
kitten.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
kotlin.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ksh.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
lazyk.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
less.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
limbo.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
lisaac.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
livescript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
llvm.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
lolcode.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
lua.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
m4.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
make.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
malbolge.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
mariadb.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
markdown.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
mediawiki.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
minizinc.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
mips.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
mongodb.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
mumps.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
mysql.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
neko.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
nickle.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
nim.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
oberon.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
objectivec++.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
objectivec.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ocaml.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
octave.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
omgrofl.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ook.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
openscad.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
org.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
oz.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
parigp.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
parser3.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
pascal.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
pawn.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
perl.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
php.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
pikachu.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
pike.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
postgresql.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
postscript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
powershell.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
prolog.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
promela.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
pseint.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
pug.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
purescript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
python.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
qsharp.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
r.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
racket.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ratfor.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
rc.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
reasonml.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
rebol.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
red.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
redis.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
restructuredtext.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
rexx.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
riscv.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
roff.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
ruby.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
rust.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
sagemath.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
sass.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
scala.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
scheme.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
scilab.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
scss.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
sed.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
setl.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
sh.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
shakespeare.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
slang.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
slick.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
smalltalk.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
snobol.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
sqlite.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
squirrel.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
standardml.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
subleq.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
swift.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
tabloid.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
tcl.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
tcsh.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
teco.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
tex.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
textile.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
thue.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
tikiwiki.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
toml.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
twiki.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
typescript.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
unison.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
unlambda.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
vala.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
velato.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
verilog.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
vim.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
vimwiki.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
visualbasic.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
whitespace.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
wolframlanguage.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
x86.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
xslt.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
yaml.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
yorick.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
zoem.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
zot.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
zsh.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
рапира.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
قلب.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
எழில்.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00
아희.yaml Import all language configs into YAML 2021-01-02 10:14:26 -08:00