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.
vifm
1 parent e89df17 commit 0373cc8Copy full SHA for 0373cc8
lua/Comment/ft.lua
@@ -29,6 +29,7 @@ local M = {
29
lisp_l = ';;%s',
30
lisp_b = '#|%s|#',
31
twig = '{#%s#}',
32
+ vim = '"%s',
33
}
34
35
---Lang table that contains commentstring (linewise/blockwise) for multiple filetypes
@@ -124,7 +125,8 @@ local L = setmetatable({
124
125
twig = { M.twig, M.twig },
126
typescript = { M.cxx_l, M.cxx_b },
127
typescriptreact = { M.cxx_l, M.cxx_b },
- vim = { '"%s' },
128
+ vim = { M.vim },
129
+ vifm = { M.vim },
130
vue = { M.html, M.html },
131
xml = { M.html, M.html },
132
xdefaults = { '!%s' },
0 commit comments