Skip to content

Commit

Permalink
Merge pull request #78 from hhatto/add-kakoune
Browse files Browse the repository at this point in the history
add: kakoune lang
  • Loading branch information
hhatto committed Nov 9, 2023
2 parents 31964ab + 8f5f03a commit 7b24285
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ var Exts = map[string]string{
"janet": "Janet",
"json": "JSON",
"jsx": "JSX",
"kak": "KakouneScript",
"kk": "Koka",
"kt": "Kotlin",
"kts": "Kotlin",
Expand Down Expand Up @@ -585,6 +586,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Jupyter Notebook": NewLanguage("Jupyter Notebook", []string{"#"}, [][]string{{"", ""}}),
"JSON": NewLanguage("JSON", []string{}, [][]string{{"", ""}}),
"JSX": NewLanguage("JSX", []string{"//"}, [][]string{{"/*", "*/"}}),
"KakouneScript": NewLanguage("KakouneScript", []string{"#"}, [][]string{{"", ""}}),
"Koka": NewLanguage("Koka", []string{"//"}, [][]string{{"/*", "*/"}}),
"Kotlin": NewLanguage("Kotlin", []string{"//"}, [][]string{{"/*", "*/"}}),
"LD Script": NewLanguage("LD Script", []string{"//"}, [][]string{{"/*", "*/"}}),
Expand Down

0 comments on commit 7b24285

Please sign in to comment.