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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
---@mod comment.utils Utilities
local F = require('Comment.ft')
local A = vim.api
local U = {}
---Comment context
---@class CommentCtx
---@field ctype integer See |comment.utils.ctype|
---@field cmode integer See |comment.utils.cmode|
---@field cmotion integer See |comment.utils.cmotion|
---@field range CommentRange
---Range of the selection that needs to be commented
---@class CommentRange
---@field srow integer Starting row
---@field scol integer Starting column
---@field erow integer Ending row
---@field ecol integer Ending column
---Comment modes - Can be manual or computed via operator-mode
---@class CommentMode
---@field toggle integer Toggle action
---@field comment integer Comment action
---@field uncomment integer Uncomment action
---An object containing comment modes
---@type CommentMode
U.cmode = {
toggle = 0,
comment = 1,
uncomment = 2,
}
---Comment types
---@class CommentType
---@field linewise integer Use linewise commentstring
---@field blockwise integer Use blockwise commentstring
---An object containing comment types
---@type CommentType
U.ctype = {
linewise = 1,
blockwise = 2,
}
---Comment motion types
---@class CommentMotion
---@field line integer Line motion (ie. 'gc2j')
---@field char integer Character/left-right motion (ie. 'gc2w')
---@field block integer Visual operator-pending motion
---@field v integer Visual motion (ie. 'v3jgc')
---@field V integer Visual-line motion (ie. 'V10kgc')
---An object containing comment motions
---@type CommentMotion
U.cmotion = {
line = 1,
char = 2,
block = 3,
v = 4,
V = 5,
}
---@private
---Check whether the line is empty
---@param iter string|string[]
---@return boolean
function U.is_empty(iter)
return #iter == 0
end
---@private
---Helper to get padding character
---@param flag boolean
---@return string string
function U.get_pad(flag)
return flag and ' ' or ''
end
---@private
---Helper to get padding pattern
---@param flag boolean
---@return string string
function U.get_padpat(flag)
return flag and '%s?' or ''
end
---@private
---Call a function if exists
---@param fn unknown|fun(...):unknown Wanna be function
---@return unknown
function U.is_fn(fn, ...)
if type(fn) == 'function' then
return fn(...)
end
return fn
end
---@private
---Check if the given line is ignored or not with the given pattern
---@param ln string Line to be ignored
---@param pat string Lua regex
---@return boolean
function U.ignore(ln, pat)
return pat and string.find(ln, pat) ~= nil
end
---Get region for line movement or visual selection
---NOTE: Returns the current line region, if `opmode` is not given.
---@param opmode? OpMotion
---@return CommentRange
function U.get_region(opmode)
if not opmode then
local row = unpack(A.nvim_win_get_cursor(0))
return { srow = row, scol = 0, erow = row, ecol = 0 }
end
local marks = string.match(opmode, '[vV]') and { '<', '>' } or { '[', ']' }
local sln, eln = A.nvim_buf_get_mark(0, marks[1]), A.nvim_buf_get_mark(0, marks[2])
return { srow = sln[1], scol = sln[2], erow = eln[1], ecol = eln[2] }
end
---Get lines from the current position to the given count
---@param count integer Probably 'vim.v.count'
---@return string[] #List of lines
---@return CommentRange
function U.get_count_lines(count)
local srow = unpack(A.nvim_win_get_cursor(0))
local erow = (srow + count) - 1
local lines = A.nvim_buf_get_lines(0, srow - 1, erow, false)
return lines, { srow = srow, scol = 0, erow = erow, ecol = 0 }
end
---Get lines from a NORMAL/VISUAL mode
---@param range CommentRange
---@return string[] #List of lines
function U.get_lines(range)
-- If start and end is same, then just return the current line
if range.srow == range.erow then
return { A.nvim_get_current_line() }
end
return A.nvim_buf_get_lines(0, range.srow - 1, range.erow, false)
end
---Validates and unwraps the given commentstring
---@param cstr string See 'commentstring'
---@return string string Left side of the commentstring
---@return string string Right side of the commentstring
function U.unwrap_cstr(cstr)
local left, right = string.match(cstr, '(.*)%%s(.*)')
assert(
(left or right),
{ msg = string.format('Invalid commentstring for %s! Read `:h commentstring` for help.', vim.bo.filetype) }
)
return vim.trim(left), vim.trim(right)
end
---Parses commentstring from the following places in the respective order
--- 1. pre_hook - commentstring returned from the function
--- 2. ft.lua - commentstring table bundled with the plugin
--- 3. commentstring - Neovim's native. See 'commentstring'
---@param cfg CommentConfig
---@param ctx CommentCtx
---@return string string Left side of the commentstring
---@return string string Right side of the commentstring
function U.parse_cstr(cfg, ctx)
-- 1. We ask `pre_hook` for a commentstring
local inbuilt = U.is_fn(cfg.pre_hook, ctx)
-- 2. Calculate w/ the help of treesitter
or F.calculate(ctx)
assert(inbuilt or (ctx.ctype ~= U.ctype.blockwise), {
msg = vim.bo.filetype .. " doesn't support block comments!",
})
-- 3. Last resort to use native commentstring
return U.unwrap_cstr(inbuilt or vim.bo.commentstring)
end
---Returns a closure which is used to do comments
---
---If given {string[]} to the closure then it will do blockwise comment
---else linewise comment will be done with the given {string}
---@param left string Left side of the commentstring
---@param right string Right side of the commentstring
---@param padding boolean Is padding enabled?
---@param scol? integer Starting column
---@param ecol? integer Ending column
---@param tabbed? boolean Using tab indentation
---@return fun(line: string|string[]):string|string[]
function U.commenter(left, right, padding, scol, ecol, tabbed)
local pad = U.get_pad(padding)
local ll = U.is_empty(left) and left or (left .. pad)
local rr = U.is_empty(right) and right or (pad .. right)
local empty = string.rep(tabbed and '\t' or ' ', scol or 0) .. left .. right
local is_lw = scol and not ecol
return function(line)
------------------
-- for linewise --
------------------
if is_lw then
if U.is_empty(line) then
return empty
end
-- line == 0 -> start from 0 col
if scol == 0 then
return (ll .. line .. rr)
end
local first = string.sub(line --[[@as string]], 0, scol)
local last = string.sub(line --[[@as string]], scol + 1, -1)
return first .. ll .. last .. rr
end
-------------------
-- for blockwise --
-------------------
if type(line) == 'table' then
local first, last = line[1], line[#line]
-- If both columns are given then we can assume it's a partial block
if scol and ecol then
local sfirst = string.sub(first, 0, scol)
local slast = string.sub(first, scol + 1, -1)
local efirst = string.sub(last, 0, ecol + 1)
local elast = string.sub(last, ecol + 2, -1)
line[1] = sfirst .. ll .. slast
line[#line] = efirst .. rr .. elast
else
line[1] = U.is_empty(first) and left or string.gsub(first, '^(%s*)', '%1' .. vim.pesc(ll))
line[#line] = U.is_empty(last) and right or (last .. rr)
end
return line
end
--------------------------------
-- for current-line blockwise --
--------------------------------
-- SOURCE: https://github.com/numToStr/Comment.nvim/issues/224
if ecol > #line then
return ll .. line .. rr
end
local first = string.sub(line, 0, scol)
local mid = string.sub(line, scol + 1, ecol + 1)
local last = string.sub(line, ecol + 2, -1)
return first .. ll .. mid .. rr .. last
end
end
---Returns a closure which is used to uncomment a line
---
---If given {string[]} to the closure then it will block uncomment
---else linewise uncomment will be done with the given {string}
---@param left string Left side of the commentstring
---@param right string Right side of the commentstring
---@param padding boolean Is padding enabled?
---@param scol? integer Starting column
---@param ecol? integer Ending column
---@return fun(line: string|string[]):string|string[]
function U.uncommenter(left, right, padding, scol, ecol)
local pp, plen = U.get_padpat(padding), padding and 1 or 0
local left_len, right_len = #left + plen, #right + plen
local ll = U.is_empty(left) and left or vim.pesc(left) .. pp
local rr = U.is_empty(right) and right or pp .. vim.pesc(right)
local is_lw = not (scol and scol)
local pattern = is_lw and '^(%s*)' .. ll .. '(.-)' .. rr .. '$' or ''
return function(line)
-------------------
-- for blockwise --
-------------------
if type(line) == 'table' then
local first, last = line[1], line[#line]
-- If both columns are given then we can assume it's a partial block
if scol and ecol then
local sfirst = string.sub(first, 0, scol)
local slast = string.sub(first, scol + left_len + 1, -1)
local efirst = string.sub(last, 0, ecol - right_len + 1)
local elast = string.sub(last, ecol + 2, -1)
line[1] = sfirst .. slast
line[#line] = efirst .. elast
else
line[1] = string.gsub(first, '^(%s*)' .. ll, '%1')
line[#line] = string.gsub(last, rr .. '$', '')
end
return line
end
------------------
-- for linewise --
------------------
if is_lw then
local a, b, c = string.match(line, pattern)
-- When user tries to uncomment when there is nothing to uncomment. See #221
assert(a and b, { msg = 'Nothing to uncomment!' })
-- If there is nothing after LHS then just return ''
-- bcz the line previously (before comment) was empty
return U.is_empty(b) and b or a .. b .. (c or '')
end
--------------------------------
-- for current-line blockwise --
--------------------------------
-- SOURCE: https://github.com/numToStr/Comment.nvim/issues/224
if ecol > #line then
return string.sub(line, scol + left_len + 1, #line - right_len)
end
local first = string.sub(line, 0, scol)
local mid = string.sub(line, scol + left_len + 1, ecol - right_len + 1)
local last = string.sub(line, ecol + 2, -1)
return first .. mid .. last
end
end
---Check if the given string is commented or not
---
---If given {string[]} to the closure, it will check the first and last line
---with LHS and RHS of commentstring respectively else it will check the given
---line with LHS and RHS (if given) of the commenstring
---@param left string Left side of the commentstring
---@param right string Right side of the commentstring
---@param padding boolean Is padding enabled?
---@param scol? integer Starting column
---@param ecol? integer Ending column
---@return fun(line: string|string[]):boolean
function U.is_commented(left, right, padding, scol, ecol)
local pp = U.get_padpat(padding)
local ll = U.is_empty(left) and left or '^%s*' .. vim.pesc(left) .. pp
local rr = U.is_empty(right) and right or pp .. vim.pesc(right) .. '$'
local pattern = ll .. '.-' .. rr
local is_full = scol == nil or ecol == nil
return function(line)
-------------------
-- for blockwise --
-------------------
if type(line) == 'table' then
local first, last = line[1], line[#line]
if is_full then
return (string.find(first, ll) and string.find(last, rr)) ~= nil
end
return (string.find(string.sub(first, scol + 1, -1), ll) and string.find(string.sub(last, 0, ecol + 1), rr))
~= nil
end
------------------
-- for linewise --
------------------
if is_full then
return string.find(line, pattern) ~= nil
end
--------------------------------
-- for current-line blockwise --
--------------------------------
-- SOURCE: https://github.com/numToStr/Comment.nvim/issues/224
return string.find(string.sub(line, scol + 1, (ecol > #line and #line or ecol + 1)), pattern) ~= nil
end
end
---@private
---Error handler
---@param ... unknown
function U.catch(fn, ...)
xpcall(fn, function(err)
vim.notify(string.format('[Comment.nvim] %s', err.msg), vim.log.levels.WARN)
end, ...)
end
return U
|