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 22
33## Pre-release
44
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+
515## 8.2.0 (2025-03-31)
616
717### 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
22
33==============================================================================
44Table 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')
33--- @class render.md.Buffer
44--- @field private buf integer
55--- @field private empty boolean
6- --- @field private timer uv_timer_t
6+ --- @field private timer uv. uv_timer_t
77--- @field private running boolean
88--- @field private marks ? render.md.Extmark[]
99local Buffer = {}
@@ -15,7 +15,7 @@ function Buffer.new(buf)
1515 local self = setmetatable ({}, Buffer )
1616 self .buf = buf
1717 self .empty = true
18- self .timer = Compat .uv .new_timer ()
18+ self .timer = assert ( Compat .uv .new_timer () )
1919 self .running = false
2020 self .marks = nil
2121 return self
You can’t perform that action at this time.
0 commit comments