We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f57a77 commit cffa731Copy full SHA for cffa731
1 file changed
lua/render-markdown/core/manager.lua
@@ -38,18 +38,6 @@ function M.init()
38
end
39
end,
40
})
41
- -- terminal / GUI resize — re-render all visible attached windows
42
- vim.api.nvim_create_autocmd('VimResized', {
43
- group = M.group,
44
- callback = function(args)
45
- for _, win in ipairs(vim.api.nvim_list_wins()) do
46
- local buf = env.win.buf(win)
47
- if M.attached(buf) and state.get(buf).enabled then
48
- ui.update(buf, win, args.event, true)
49
- end
50
51
- end,
52
- })
53
-- wrap option toggled (:set wrap / :set nowrap) — re-render the current window
54
vim.api.nvim_create_autocmd('OptionSet', {
55
group = M.group,
0 commit comments