Skip to content

Commit 6821b3a

Browse files
authored
fix(ft): don't use double semicolon for fennel (#304)
This PR replaces the double semicolons i.e., `;;%s` with single semicolon i.e., `;%s` for [fennel](https://fennel-lang.org) files.
1 parent 418d311 commit 6821b3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/Comment/ft.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ local L = setmetatable({
6060
elm = { M.dash, M.haskell_b },
6161
elvish = { M.hash },
6262
faust = { M.cxx_l, M.cxx_b },
63-
fennel = { M.lisp_l },
63+
fennel = { ';%s' },
6464
fish = { M.hash },
6565
fsharp = { M.cxx_l, M.fsharp_b },
6666
gdb = { M.hash },

0 commit comments

Comments
 (0)