From abaf59f3b1c4e703f837d899c41b3cb6e52fcf63 Mon Sep 17 00:00:00 2001 From: Italo Silva Date: Tue, 1 Aug 2023 10:36:32 -0300 Subject: [PATCH] feat(ft): add `racket` support (#356) Racket follows the same conventions as (most) other Lisps. See https://docs.racket-lang.org/style/Choosing_the_Right_Construct.html: --- lua/Comment/ft.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/Comment/ft.lua b/lua/Comment/ft.lua index 09f9279..4ca518f 100644 --- a/lua/Comment/ft.lua +++ b/lua/Comment/ft.lua @@ -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]#' }, @@ -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 },