File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Pre-release
4
4
5
+ ### Features
6
+
7
+ - padding character for inline code [ #389 ] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/389 )
8
+ [ b292624] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/b292624f228596010145f63697a49cdd9b8d8ce7 )
9
+ - check ` disable_pattern ` exists and notify if not [ #386 ] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/386 )
10
+ [ #388 ] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/388 )
11
+ [ c283dec] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/c283dec1ea94947499c36bb17443e15d6acf5cda )
12
+ - wrap ` nvim_buf_set_extmark ` in pcall use notify_once if it errors [ #382 ] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/382 )
13
+ [ 1e2e9a3] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/1e2e9a386fbe41b869d3d0e000e19db72284585b )
14
+
5
15
## 8.2.0 (2025-03-31)
6
16
7
17
### Features
Original file line number Diff line number Diff line change 1
- *render-markdown.txt* For 0.11.0 Last change: 2025 April 02
1
+ *render-markdown.txt* For 0.11.0 Last change: 2025 April 03
2
2
3
3
==============================================================================
4
4
Table of Contents *render-markdown-table-of-contents*
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ local Compat = require('render-markdown.lib.compat')
3
3
--- @class render.md.Buffer
4
4
--- @field private buf integer
5
5
--- @field private empty boolean
6
- --- @field private timer uv_timer_t
6
+ --- @field private timer uv. uv_timer_t
7
7
--- @field private running boolean
8
8
--- @field private marks ? render.md.Extmark[]
9
9
local Buffer = {}
@@ -15,7 +15,7 @@ function Buffer.new(buf)
15
15
local self = setmetatable ({}, Buffer )
16
16
self .buf = buf
17
17
self .empty = true
18
- self .timer = Compat .uv .new_timer ()
18
+ self .timer = assert ( Compat .uv .new_timer () )
19
19
self .running = false
20
20
self .marks = nil
21
21
return self
You can’t perform that action at this time.
0 commit comments