forked from numToStr/Comment.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft.lua
178 lines (163 loc) · 4.86 KB
/
ft.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
---@mod comment.ft Language or Filetype detection
local A = vim.api
---Common commentstring shared b/w mutliple languages
local M = {
cxx_l = '//%s',
cxx_b = '/*%s*/',
hash = '#%s',
double_hash = '##%s',
dash = '--%s',
dash_bracket = '--[[%s]]',
haskell_b = '{-%s-}',
fsharp_b = '(*%s*)',
html = '<!--%s-->',
latex = '%%s',
lisp_l = ';;%s',
lisp_b = '#|%s|#',
}
---Lang table that contains commentstring (linewise/blockwise) for mutliple filetypes
---@type table { filetype = { linewise, blockwise } }
local L = {
bash = { M.hash },
bib = { M.latex },
c = { M.cxx_l, M.cxx_b },
cabal = { M.dash },
cmake = { M.hash, '#[[%s]]' },
conf = { M.hash },
conkyrc = { M.dash, M.dash_bracket },
cpp = { M.cxx_l, M.cxx_b },
cs = { M.cxx_l, M.cxx_b },
css = { M.cxx_b, M.cxx_b },
cuda = { M.cxx_l, M.cxx_b },
dhall = { M.dash, M.haskell_b },
dot = { M.cxx_l, M.cxx_b },
eelixir = { M.html, M.html },
elixir = { M.hash },
elm = { M.dash, M.haskell_b },
fennel = { M.lisp_l },
fish = { M.hash },
fsharp = { M.cxx_l, M.fsharp_b },
gdb = { M.hash },
gdscript = { M.hash },
gleam = { M.cxx_l },
go = { M.cxx_l, M.cxx_b },
graphql = { M.hash },
groovy = { M.cxx_l, M.cxx_b },
haskell = { M.dash, M.haskell_b },
heex = { M.html, M.html },
html = { M.html, M.html },
htmldjango = { M.html, M.html },
idris = { M.dash, M.haskell_b },
ini = { M.hash },
java = { M.cxx_l, M.cxx_b },
javascript = { M.cxx_l, M.cxx_b },
javascriptreact = { M.cxx_l, M.cxx_b },
jsonc = { M.cxx_l },
julia = { M.hash, '#=%s=#' },
kotlin = { M.cxx_l, M.cxx_b },
lidris = { M.dash, M.haskell_b },
lisp = { M.lisp_l, M.lisp_b },
lua = { M.dash, M.dash_bracket },
markdown = { M.html, M.html },
make = { M.hash },
mbsyncrc = { M.double_hash },
meson = { M.hash },
nix = { M.hash, M.cxx_b },
ocaml = { M.fsharp_b, M.fsharp_b },
plantuml = { "'%s", "/'%s'/" },
purescript = { M.dash, M.haskell_b },
python = { M.hash }, -- Python doesn't have block comments
php = { M.cxx_l, M.cxx_b },
r = { M.hash }, -- R doesn't have block comments
readline = { M.hash },
ruby = { M.hash },
rust = { M.cxx_l, M.cxx_b },
scala = { M.cxx_l, M.cxx_b },
scheme = { M.lisp_l, M.lisp_b },
sh = { M.hash },
solidity = { M.cxx_l, M.cxx_b },
sql = { M.dash, M.cxx_b },
stata = { M.cxx_l, M.cxx_b },
svelte = { M.html, M.html },
swift = { M.cxx_l, M.cxx_b },
sxhkdrc = { M.hash },
teal = { M.dash, M.dash_bracket },
terraform = { M.hash, M.cxx_b },
tex = { M.latex },
template = { M.double_hash },
tmux = { M.hash },
toml = { M.hash },
typescript = { M.cxx_l, M.cxx_b },
typescriptreact = { M.cxx_l, M.cxx_b },
vim = { '"%s' },
vue = { M.html, M.html },
xml = { M.html, M.html },
xdefaults = { '!%s' },
yaml = { M.hash },
zig = { M.cxx_l }, -- Zig doesn't have block comments
}
local ft = {}
---@alias CommentLang string Filetype/Language of the buffer
---Sets a commentstring(s) for a filetype/language
---@param lang CommentLang
---@param val string|string[]
function ft.set(lang, val)
L[lang] = type(val) == 'string' and { val } or val
return ft
end
---Get a commentstring from the filtype list
---@param lang CommentLang
---@param ctype CommentType
---@return string
function ft.get(lang, ctype)
local l = ft.lang(lang)
return l and l[ctype]
end
---Get the commentstring(s) from the filtype list
---@param lang CommentLang
---@return string
function ft.lang(lang)
return L[lang]
end
---Get the tree in range by walking the whole tree recursively
---NOTE: This ignores `comment` parser as this is useless
---@param tree userdata Tree to be walked
---@param range number[] Range to check for
---@return userdata
function ft.contains(tree, range)
for lang, child in pairs(tree:children()) do
if lang ~= 'comment' and child:contains(range) then
return ft.contains(child, range)
end
end
return tree
end
---Calculate commentstring w/ the power of treesitter
---@param ctx CommentCtx
---@return string
function ft.calculate(ctx)
local buf = A.nvim_get_current_buf()
local ok, parser = pcall(vim.treesitter.get_parser, buf)
local default = ft.get(A.nvim_buf_get_option(buf, 'filetype'), ctx.ctype)
if not ok then
return default
end
local lang = ft.contains(parser, {
ctx.range.srow - 1,
ctx.range.scol,
ctx.range.erow - 1,
ctx.range.ecol,
}):lang()
return ft.get(lang, ctx.ctype) or default
end
return setmetatable(ft, {
__newindex = function(this, k, v)
this.set(k, v)
end,
__call = function(this, langs, spec)
for _, lang in ipairs(langs) do
this.set(lang, spec)
end
return this
end,
})