Skip to content

Commit d228513

Browse files
chore: update changelog
1 parent b292624 commit d228513

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
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

doc/render-markdown.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
==============================================================================
44
Table of Contents *render-markdown-table-of-contents*

lua/render-markdown/core/buffer.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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[]
99
local 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

0 commit comments

Comments
 (0)