File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Pre-release
4
4
5
+ ### Features
6
+
7
+ - logging improvements [ 2b86631] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/2b86631c153e24682a1a2d05e37a0f4f94e9b827 )
8
+
9
+ ### Bug Fixes
10
+
11
+ - indent with block widths [ 044f2d6] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/044f2d6d76712de69a79b25a7cd8311cb505a9f4 )
12
+
5
13
## 7.0.0 (2024-09-13)
6
14
7
15
### ⚠ BREAKING CHANGES
Original file line number Diff line number Diff line change @@ -36,9 +36,7 @@ function M.setup()
36
36
-- Write out any logs before closing
37
37
vim .api .nvim_create_autocmd (' VimLeave' , {
38
38
group = M .group ,
39
- callback = function ()
40
- require (' render-markdown.log' ).flush ()
41
- end ,
39
+ callback = log .flush ,
42
40
})
43
41
end
44
42
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ local configs = {}
10
10
--- @class render.md.State
11
11
--- @field private config render.md.Config
12
12
--- @field enabled boolean
13
- --- @field log_level render.md.config.LogLevel
14
13
--- @field file_types string[]
15
14
--- @field latex render.md.Latex
16
15
--- @field custom_handlers table<string , render.md.Handler>
@@ -36,7 +35,6 @@ function M.setup(default_config, user_config)
36
35
37
36
M .config = config
38
37
M .enabled = config .enabled
39
- M .log_level = config .log_level
40
38
M .file_types = config .file_types
41
39
M .latex = config .latex
42
40
M .custom_handlers = config .custom_handlers
You can’t perform that action at this time.
0 commit comments