Skip to content

Commit 55e8df2

Browse files
committed
feat(ft): added blade support
1 parent e30b7f2 commit 55e8df2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lua/Comment/ft.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ local A = vim.api
1414

1515
---Common commentstring shared b/w multiple languages
1616
local M = {
17+
blade = '{{-- %s --}}',
1718
cxx_l = '//%s',
1819
cxx_b = '/*%s*/',
1920
dbl_hash = '##%s',
@@ -47,6 +48,7 @@ local L = setmetatable({
4748
bash = { M.hash },
4849
beancount = { M.semicolon },
4950
bib = { M.latex },
51+
blade = { M.blade },
5052
blueprint = { M.cxx_l }, -- Blueprint doesn't have block comments
5153
c = { M.cxx_l, M.cxx_b },
5254
cabal = { M.dash },

0 commit comments

Comments
 (0)