We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lean3
1 parent d0cbbfb commit e906b18Copy full SHA for e906b18
lua/Comment/ft.lua
@@ -31,6 +31,7 @@ local M = {
31
lisp_b = '#|%s|#',
32
twig = '{#%s#}',
33
vim = '"%s',
34
+ lean_b = '/-%s-/',
35
}
36
37
---Lang table that contains commentstring (linewise/blockwise) for multiple filetypes
@@ -94,7 +95,8 @@ local L = setmetatable({
94
95
jsonnet = { M.cxx_l, M.cxx_b },
96
julia = { M.hash, '#=%s=#' },
97
kotlin = { M.cxx_l, M.cxx_b },
- lean = { M.dash, '/-%s-/' },
98
+ lean = { M.dash, M.lean_b },
99
+ lean3 = { M.dash, M.lean_b },
100
lidris = { M.dash, M.haskell_b },
101
lilypond = { M.latex, '%{%s%}' },
102
lisp = { M.lisp_l, M.lisp_b },
0 commit comments