-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-comments.txt
288 lines (244 loc) · 9.42 KB
/
dev-comments.txt
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
==============================================================================
------------------------------------------------------------------------------
Table of contents:
Abstract......................................................|dev-comments|
The setup function....................................|dev_comments.setup()|
Configure the setup.............................|dev-comments-configuration|
File modes.........................................|dev-comments-file-modes|
Pre-filter modes.................................|dev-comments-filter-modes|
Default mappings.............................|dev-comments-default-mappings|
Default commands.............................|dev-comments-default-commands|
Telecope integration................................|dev-comments-telescope|
------------------------------------------------------------------------------
*dev-comments*
# Abstract~
*dev-comments.nvim* is a plugin that uses the tree-sitter-comment parser to
list and search for dev comments
Author: Omar Zeghouani
License: MIT
------------------------------------------------------------------------------
*dev_comments.setup()*
`dev_comments.setup`({config})
Module setup
Parameters~
{config} `(table|nil)` configuration options. See |dev-comments-configuration|
Usage~
`require("dev_comments").setup({})` (replace `{}` with your `config` table)
------------------------------------------------------------------------------
*dev-comments-configuration*
# Configuration~
Default values:
>
{
-- Enables vim.notify messages
debug = false,
-- Creates <Plug> mappings
default_mappings = true,
-- Create user commands
default_commands = true,
-- Each call of dev-comments is cached
-- Play around with the reset autocommands for more aggressive caching
cache = {
enabled = true,
reset_autocommands = { "BufWritePost", "BufWinEnter" },
},
-- Loads and sets default options for telescope plugin
telescope = {
load = true,
-- See |dev-comments-file-modes|
[Files.CURRENT] = {
tags = {},
users = {},
},
[Files.OPEN] = {
tags = {},
users = {},
},
[Files.ALL] = {
hidden = false,
tags = {},
users = {},
},
},
-- Cycle through dev-comments in a given buffer
-- Caching is recommended for this feature
cycle = {
wrap = true,
},
-- Improves performance when searching in a large directory
pre_filter = {
-- See |dev-comments-filter-modes|
command = FilterCommand.RIPGREP,
-- If search fails, uses vim.loop.scan_dir (very slow)
fallback_to_scan_dir = true,
},
-- Highlight for the tag in picker (not in buffer)
highlight = {
tags = {
["TODO"] = "TSWarning",
["HACK"] = "TSWarning",
["WARNING"] = "TSWarning",
["FIXME"] = "TSDanger",
["XXX"] = "TSDanger",
["BUG"] = "TSDanger",
},
-- Used if lookup fails for a given tag
fallback = "TSNote",
},
}
<
==============================================================================
------------------------------------------------------------------------------
*C.register()*
`C.register`()
Return~
`(boolean)` Cache is registered
------------------------------------------------------------------------------
*C.unregister()*
`C.unregister`()
Return~
`(boolean)` Cache is unregistered
==============================================================================
------------------------------------------------------------------------------
Class~
{Opts} table of options used by comments.generate
Fields~
{files} `(string)`
{cwd} `(string)`
{hidden} `(boolean)`
{tags} `(string[])`
{users} `(string[])`
{find} `(string[])`
------------------------------------------------------------------------------
Class~
{Results} table of results returned by comments.generate
Fields~
{tag} `(string)`
{user} `(string)`
{range} Range
{bufnr} `(number)` Buffer number
------------------------------------------------------------------------------
Class~
{Range}
Fields~
{start_row} `(number)` The start row of text
{end_row} `(number)` The end row of text
{start_col} `(number)` The start column of text
{end_col} `(number)` The end column of text
------------------------------------------------------------------------------
*C.generate()*
`C.generate`({files}, {opts})
Parameters~
{files} `(string)` # @see constants.Files
{opts} Opts
Return~
`(table)`
==============================================================================
------------------------------------------------------------------------------
*dev-comments-file-modes*
# File modes~
>
{
Files.CURRENT,
Files.OPEN,
Files.ALL
}
<
------------------------------------------------------------------------------
*dev-comments-filter-modes*
# Pre-filter modes~
>
{
FilterCommand.RIPGREP,
FilterCommand.GREP,
FilterCommand.NONE,
}
<
==============================================================================
------------------------------------------------------------------------------
*C.goto_prev()*
`C.goto_prev`({wrap}, {opts})
Parameters~
{wrap} `(boolean)` Should wrap around
{opts} Opts
------------------------------------------------------------------------------
*C.goto_next()*
`C.goto_next`({wrap}, {opts})
Parameters~
{wrap} `(boolean)` Should wrap around
{opts} Opts
==============================================================================
------------------------------------------------------------------------------
*F.match()*
`F.match`({command}, {cwd}, {tags}, {users})
Parameters~
{command} `(string)` # @see constants.FilterCommand
{cwd} `(optional)` `(string)` # defaults to current working directory
{tags} `(optional)` `(string[])` # defaults to empty list
{users} `(optional)` `(string[])` # defaults to empty list
Return~
`(string[])` list of files with dev comments
==============================================================================
------------------------------------------------------------------------------
*dev-comments-default-mappings*
# Default mappings~
dev-comments.nvim comes with optional default mappings and commands
>
function()
-- <Plug> keymaps
vim.keymap.set("n", "<Plug>DevCommentsTelescopeCurrent", function()
require("telecope").extensions.dev_comments.current({})
end, { silent = true })
vim.keymap.set("n", "<Plug>DevCommentsTelescopeOpen", function()
require("telecope").extensions.dev_comments.open({})
end, { silent = true })
vim.keymap.set("n", "<Plug>DevCommentsTelescopeAll", function()
require("telecope").extensions.dev_comments.open({})
end, { silent = true })
vim.keymap.set("n", "<Plug>DevCommentsCyclePrev", function()
require("dev_comments.cycle").goto_prev()
end, { silent = true })
vim.keymap.set("n", "<Plug>DevCommentsCycleNext", function()
require("dev_comments.cycle").goto_next()
end, { silent = true })
-- Keybinds
vim.keymap.set("n", "[c", "<Plug>DevCommentsCyclePrev")
vim.keymap.set("n", "]c", "<Plug>DevCommentsCycleNext")
end
<
------------------------------------------------------------------------------
*dev-comments-default-commands*
# Default commands~
>
function()
local Files = require("dev_comments.constants").Files
local cache = require("dev_comments.cache")
vim.api.nvim_create_user_command("DevCommentsCacheReset", function()
cache.reset(Files.CURRENT)
cache.reset(Files.OPEN)
cache.reset(Files.ALL)
end, {})
vim.api.nvim_create_user_command("DevCommentsCacheToggle", function()
local registered = cache.unregister()
if not registered then cache.register() end
end, {})
vim.api.nvim_create_user_command("DevCommentsCacheDisable", function()
cache.unregister()
end, {})
vim.api.nvim_create_user_command("DevCommentsCacheEnable", function()
cache.register()
end, {})
vim.api.nvim_create_user_command("DevCommentsCyclePrev", function()
require("dev_comments.cycle").goto_prev()
end, {})
vim.api.nvim_create_user_command("DevCommentsCycleNext", function()
require("dev_comments.cycle").goto_next()
end, {})
end
<
==============================================================================
------------------------------------------------------------------------------
*dev-comments-telescope*
# Telescope~
dev-comments.nvim comes with first class telescope integration
vim:tw=78:ts=8:noet:ft=help:norl: