-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinit.lua
470 lines (401 loc) · 12.9 KB
/
init.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
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
local M = {}
local utils = require("wrapping.utils")
local treesitter = require("wrapping.treesitter")
---@type Options
local OPTION_DEFAULTS = {
set_nvim_opt_defaults = true,
softener = {
default = 1.0,
gitcommit = false, -- Based on https://stackoverflow.com/a/2120040/27641
},
create_commands = true,
create_keymaps = true,
auto_set_mode_heuristically = true,
auto_set_mode_filetype_allowlist = {
"asciidoc",
"gitcommit",
"help",
"latex",
"mail",
"markdown",
"rst",
"tex",
"text",
"typst", -- Supported from NeoVim 0.10+
},
auto_set_mode_filetype_denylist = {},
buftype_allowlist = {},
excluded_treesitter_queries = {
markdown = {
"(fenced_code_block) @markdown1",
"(atx_heading) @markdown2",
"(pipe_table_header) @markdown3",
"(pipe_table_delimiter_row) @markdown4",
"(pipe_table_row) @markdown5",
},
},
notify_on_switch = true,
log_path = utils.get_log_path(),
}
local VERY_LONG_TEXTWIDTH_FOR_SOFT = 999999
local opts
---@param str string
---@return nil
local function log(str)
if opts.log_path ~= nil then
local bufname = vim.fn.bufname()
local datetime = os.date("%FT%H:%m:%S%z")
if bufname == nil or bufname == "" then
bufname = "Unknown of filetype "
.. vim.api.nvim_get_option_value("filetype", { buf = 0 })
end
local fp = assert(io.open(opts.log_path, "a"))
fp:write("[" .. datetime .. "] " .. bufname .. ": " .. str .. "\n")
fp:close()
end
end
---@return boolean
local function soft_wrap_mode_quiet()
if vim.b.wrapmode == "soft" then
return false
end
-- Save prior textwidth
vim.b.hard_textwidth =
vim.api.nvim_get_option_value("textwidth", { buf = 0 })
-- Effectively disable textwidth (setting it to 0 makes it act like 79 for gqxx)
vim.api.nvim_set_option_value(
"textwidth",
VERY_LONG_TEXTWIDTH_FOR_SOFT,
{ buf = 0 }
)
vim.api.nvim_set_option_value("wrap", true, { win = 0 })
vim.keymap.set(
"n",
"<Up>",
"g<Up>",
{ buffer = 0, desc = "Move up one display line" }
)
vim.keymap.set(
"n",
"<Down>",
"g<Down>",
{ buffer = 0, desc = "Move down one display line" }
)
vim.b.wrap_mappings_initialized = true
vim.b.wrapmode = "soft"
return true
end
---@return boolean
local function hard_wrap_mode_quiet()
if vim.b.wrapmode == "hard" then
return false
end
if vim.b.hard_textwidth then
vim.api.nvim_set_option_value(
"textwidth",
vim.b.hard_textwidth,
{ buf = 0 }
)
vim.b.hard_textwidth = nil
end
vim.api.nvim_set_option_value("wrap", false, { win = 0 })
if vim.b.wrap_mappings_initialized == true then
vim.keymap.del("n", "<Up>", { buffer = 0 })
vim.keymap.del("n", "<Down>", { buffer = 0 })
end
vim.b.wrap_mappings_initialized = false
vim.b.wrapmode = "hard"
return true
end
---@return nil
M.soft_wrap_mode = function()
if soft_wrap_mode_quiet() and opts.notify_on_switch then
vim.notify("Soft wrap mode.")
end
end
---@return nil
M.hard_wrap_mode = function()
if hard_wrap_mode_quiet() and opts.notify_on_switch then
vim.notify("Hard wrap mode.")
end
end
---@return nil
M.toggle_wrap_mode = function()
if M.get_current_mode() == "hard" then
M.soft_wrap_mode()
else
M.hard_wrap_mode()
end
end
---@return number
local function get_softener()
local filetype = vim.api.nvim_get_option_value("filetype", { buf = 0 })
local value = vim.tbl_get(opts.softener, filetype)
if value ~= nil then
return value
else
return opts.softener.default
end
end
---@return boolean
local function likely_nontextual_language()
-- If an LSP provider supports these capabilities it's almost certainly not
-- a textual language, and therefore we should use hard wrapping
local get_clients
if vim.fn.has("nvim-0.10") == 1 then
get_clients = vim.lsp.get_clients
else
get_clients = vim.lsp.get_active_clients
end
for _, client in pairs(get_clients({ bufnr = 0 })) do
if
client.server_capabilities.definitionProvider
or client.server_capabilities.signatureHelpProvider
then
return true
end
end
return false
end
---@return boolean
local function likely_textwidth_set_deliberately()
local textwidth_global =
vim.api.nvim_get_option_value("textwidth", { scope = "global" })
local textwidth_buffer =
vim.api.nvim_get_option_value("textwidth", { buf = 0 })
log(
"Textwidths: global="
.. textwidth_global
.. ", buffer="
.. textwidth_buffer
)
if
textwidth_global ~= textwidth_buffer
and textwidth_buffer ~= VERY_LONG_TEXTWIDTH_FOR_SOFT
then
-- textwidth has probably been set by a modeline, autocmd or
-- filetype/x.{lua.vim} deliberately
return true
end
return false
end
---@return integer, integer
local function get_excluded_treesitter()
local filetype = vim.api.nvim_get_option_value("filetype", { buf = 0 })
local exclusions = opts.excluded_treesitter_queries[filetype]
local tree_lines = 0
local tree_chars = 0
if exclusions then
for _, exclusion in pairs(exclusions) do
local lines, chars =
treesitter.count_lines_of_query(filetype, exclusion)
tree_lines = tree_lines + lines
tree_chars = tree_chars + chars
end
end
return tree_lines, tree_chars
end
---@param reason string
---@return nil
local function auto_heuristic(reason)
log("Testing for auto heuristic because of event " .. reason)
if vim.b.wrapmode ~= nil then
log("wrapmode already set for this buffer")
return
end
local filetype = vim.api.nvim_get_option_value("filetype", { buf = 0 })
log("Filetype: " .. filetype)
if vim.tbl_contains(opts.auto_set_mode_filetype_denylist, filetype) then
log("File in denylist")
return
elseif
vim.tbl_count(opts.auto_set_mode_filetype_denylist) > 0
or vim.tbl_contains(opts.auto_set_mode_filetype_allowlist, filetype)
then
log("About to set mode heuristically")
M.set_mode_heuristically()
else
log("Skipping heuristic mode because of allow/denylist")
end
end
---@return nil
M.set_mode_heuristically = function()
local buftype = vim.api.nvim_get_option_value("buftype", { buf = 0 })
if
buftype ~= "" and not vim.tbl_contains(opts.buftype_allowlist, buftype)
then
log("Buftype is " .. buftype .. ", ignoring")
return
end
local softener = get_softener()
log("Softener is " .. vim.inspect(softener))
if type(softener) == "function" then
softener = softener()
end
if softener == true then
log("Softener function forcing soft mode")
M.soft_wrap_mode()
return
elseif softener == false then
log("Softener function forcing hard mode")
M.hard_wrap_mode()
return
end
if likely_nontextual_language() then
log("Likely this is a nontextual language, ignoring")
return
end
if likely_textwidth_set_deliberately() then
log("Likely that textwidth was set deliberately, forcing hard mode")
M.hard_wrap_mode()
return
end
local hard_textwidth_for_comparison
if vim.b.hard_textwidth then
hard_textwidth_for_comparison = vim.b.hard_textwidth
log("Previous hard textwidth=" .. hard_textwidth_for_comparison)
else
hard_textwidth_for_comparison =
vim.api.nvim_get_option_value("textwidth", { buf = 0 })
log("Option textwidth=" .. hard_textwidth_for_comparison)
end
if hard_textwidth_for_comparison == 0 then
-- 0 is effectively treated like 'infinite' line length. It's also the
-- default, and many folks won't change it from that. Based upon that,
-- we're deciding here that we are going to treat it like it is set to
-- VERY_LONG_TEXTWIDTH_FOR_SOFT for the purposes of calculation.
hard_textwidth_for_comparison = VERY_LONG_TEXTWIDTH_FOR_SOFT
log("Forcing very long textwidth")
end
local tree_lines, tree_chars = get_excluded_treesitter()
local blank_lines = utils.count_blank_lines()
log(
"Exclusions: "
.. tree_lines
.. " TS lines; "
.. tree_chars
.. " TS chars; "
.. blank_lines
.. " blank lines"
)
local file_size = utils.get_buf_size() - tree_chars
local average_line_length = file_size
/ (vim.fn.line("$") - blank_lines - tree_lines)
log("Average line length: " .. vim.inspect(average_line_length))
if (average_line_length * softener) < hard_textwidth_for_comparison then
log("Selecting hard wrap mode")
M.hard_wrap_mode()
else
log("Selecting soft wrap mode")
M.soft_wrap_mode()
end
end
---@return string|nil
M.get_current_mode = function()
if vim.b.wrapmode then
return vim.b.wrapmode
else
return nil
end
end
---@param o Options
---@return nil
M.setup = function(o)
opts = vim.tbl_deep_extend("force", OPTION_DEFAULTS, o or {})
log("setup() with o=" .. vim.inspect(o))
vim.validate({
set_nvim_opt_defaults = { opts.set_nvim_opt_defaults, "boolean" },
softener = { opts.softener, "table" },
create_commands = { opts.create_commands, "boolean" },
create_keymaps = { opts.create_commands, "boolean" },
auto_set_mode_heuristically = {
opts.auto_set_mode_heuristically,
"boolean",
},
auto_set_mode_filetype_allowlist = {
opts.auto_set_mode_filetype_allowlist,
"table",
},
auto_set_mode_filetype_denylist = {
opts.auto_set_mode_filetype_denylist,
"table",
},
buftype_allowlist = { opts.buftype_allowlist, "table" },
notify_on_switch = { opts.notify_on_switch, "boolean" },
log_path = { opts.log_path, "string" },
})
if
vim.tbl_count(opts.auto_set_mode_filetype_allowlist) > 0
and vim.tbl_count(opts.auto_set_mode_filetype_denylist) > 0
then
vim.notify(
"wrapping.lua: both auto_set_mode_filetype_allowlist and auto_set_mode_filetype_denylist have entries; "
.. "they are mutually exclusive and only one must be set.",
vim.log.levels.ERROR
)
return
end
if opts.set_nvim_opt_defaults then
vim.api.nvim_set_option_value("linebreak", true, {})
vim.api.nvim_set_option_value("wrap", false, {})
end
if opts.create_commands then
vim.api.nvim_create_user_command("SoftWrapMode", function()
M.soft_wrap_mode()
end, {
desc = "Set wrap mode to 'soft'",
})
vim.api.nvim_create_user_command("HardWrapMode", function()
M.hard_wrap_mode()
end, {
desc = "Set wrap mode to 'hard'",
})
vim.api.nvim_create_user_command("ToggleWrapMode", function()
M.toggle_wrap_mode()
end, {
desc = "Toggle wrap mode",
})
vim.api.nvim_create_user_command("WrappingOpenLog", function()
vim.cmd(":split " .. opts.log_path)
vim.api.nvim_set_option_value("readonly", true, { buf = 0 })
vim.cmd(":norm G")
end, {
desc = "Toggle wrap mode",
})
end
if opts.create_keymaps then
vim.keymap.set("n", "[ow", function()
M.soft_wrap_mode()
end, { desc = "Soft wrap mode", unique = true })
vim.keymap.set("n", "]ow", function()
M.hard_wrap_mode()
end, { desc = "Hard wrap mode", unique = true })
vim.keymap.set("n", "yow", function()
M.toggle_wrap_mode()
end, { desc = "Toggle wrap mode", unique = true })
end
if opts.auto_set_mode_heuristically then
-- We use BufWinEnter as it is fired after modelines are processed, so
-- we can use what's in there.
vim.api.nvim_create_autocmd("BufWinEnter", {
group = vim.api.nvim_create_augroup("wrapping", {}),
callback = function()
auto_heuristic("BufWinEnter")
end,
})
vim.api.nvim_create_autocmd("OptionSet", {
pattern = "filetype",
callback = function()
auto_heuristic("OptionSet")
end,
})
end
end
if vim.fn.has("nvim-0.8.0") ~= 1 then
vim.notify(
"WARNING: wrapping.nvim is only compatible with NeoVim 0.8+",
vim.log.levels.WARN
)
return
end
return M