Skip to content

Commit

Permalink
feat(ft): add racket support (#356)
Browse files Browse the repository at this point in the history
Racket follows the same conventions as (most) other Lisps.

See https://docs.racket-lang.org/style/Choosing_the_Right_Construct.html:
  • Loading branch information
oyarsa committed Aug 1, 2023
1 parent 176e85e commit abaf59f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/Comment/ft.lua
Expand Up @@ -99,7 +99,7 @@ local L = setmetatable({
markdown = { M.html, M.html },
make = { M.hash },
mbsyncrc = { M.dbl_hash },
mermaid = { "%%%s" },
mermaid = { '%%%s' },
meson = { M.hash },
nextflow = { M.cxx_l, M.cxx_b },
nim = { M.hash, '#[%s]#' },
Expand All @@ -115,6 +115,7 @@ local L = setmetatable({
proto = { M.cxx_l, M.cxx_b },
quarto = { M.html, M.html },
r = { M.hash }, -- R doesn't have block comments
racket = { M.lisp_l, M.lisp_b },
readline = { M.hash },
rego = { M.hash },
remind = { M.hash },
Expand Down

0 comments on commit abaf59f

Please sign in to comment.