Skip to content

Releases: MeanderingProgrammer/render-markdown.nvim

v8.2.0

31 Mar 19:56
v8.2.0
bfbb46a
Compare
Choose a tag to compare

8.2.0 (2025-03-31)

Features

  • enabled flag for link footnote (#362) (9721ffe)
  • blink.cmp source registration (b8d93e8) (62d6681)
  • improved completions (9f4ef68)
  • filter command completions (#372)
  • improved advice in checkhealth (5cec1bb)
  • avoid inline text for checkboxes when possible (#378) (f9badfb)
  • code.language_icon option (#376) (8ee2701) (7bf951b)
  • code border for different conceal settings (e724a49)
  • use builtin extends query in vim.treesitter.query.set for injections (c91fa46)
  • completion filter for callouts and checkboxes (#380) (84d413b)
  • separate code border highlight, allow false value (a1fc4e5)
  • ability to enable and disable atx and setext heading rendering (#381) (a020c88)
  • reduce height of LSP hover doc window based on concealed lines (#384) (17b839b)

Bug Fixes

  • account for indent when right aligning code language (125258a)
  • support for code border for 0.11, disable conceal_lines highlights (#351) (#352) (e6c8081)

Collaborator Shoutouts

v8.1.1

09 Mar 23:28
v8.1.1
a03ed82
Compare
Choose a tag to compare

8.1.1 (2025-03-09)

Bug Fixes

  • padding for inline code and list items (#364) (932432c)

v8.1.0

07 Mar 23:20
v8.1.0
81374ff
Compare
Choose a tag to compare

8.1.0 (2025-03-07)

Features

  • in-process lsp for engine agnostic completions (b56fa1b)
  • customize heading properties based on text (#320) (5c2440d)
  • allow html tags to be replaced with icons (#336) (6d446de)
  • autocommand events and wiki link body customization (#228) (#345) (0df6719) (#350) (a53ac54)
  • indent mode icon support (#343) (21623a9) (33673e6)
  • bullet left_pad & right_pad support functions (#349) (98a3b7d)
  • bullet scope_highlight & highlight function support (#354) (9e3393b)
  • use default render_modes = true (all) for LSP docs (#326) (17a7746)
  • update troubleshooting doc (f6c9e18)
  • update lazy preset to match LazyVim (4a28c13)
  • latex position below (#347) (43a971e)
  • improve checkhealth (1ef7664)
  • after clear callback (#356)
  • process conceal_lines metadata for 0.11 (595ac4f)

Bug Fixes

Collaborator Shoutouts

v8.0.0

06 Feb 21:35
v8.0.0
f2bdf9f
Compare
Choose a tag to compare

8.0.0 (2025-02-06)

⚠ BREAKING CHANGES

This release includes only a single change which breaks any function values in user configurations. Rather than passing a list of arguments to the functions we now provide a single context table with the same information (591e256).

The fix to any errors is straightforward as the fields of the context continue to have the same names. So if you have an existing function like:

function(param1, param2)
    vim.print(param1)
    vim.print(param2) 
end

The fixed version would be:

function(ctx)
    vim.print(ctx.param1)
    vim.print(ctx.param2)
end

If you use the same parameters many times in the function and don't want to add the ctx. prefix everywhere you can add a line at the top to define local variables with the same name as before and keep the rest of the function body unchanged:

function(ctx)
    local param1, param2 = ctx.param1, ctx.param2
    vim.print(param1)
    vim.print(param2)
end

The fields impacted are:

  • The parse functions in custom_handlers:
    • buf -> ctx.buf
    • root -> ctx.root
  • The callbacks in on: on.attach & on.render:
    • buf -> ctx.buf
  • bullet.icons & bullet.ordered_icons if a non-default function was set:
    • level -> ctx.level
    • index -> ctx.index
    • value -> ctx.value
  • heading.icons if a function was set:
    • sections -> ctx.sections

v7.9.0

02 Feb 21:02
v7.9.0
2a9e0ab
Compare
Choose a tag to compare

7.9.0 (2025-02-02)

Features

Bug Fixes

v7.8.0

04 Jan 23:27
v7.8.0
1636954
Compare
Choose a tag to compare

7.8.0 (2025-01-04)

Features

  • individual components can all specify render modes (#269) (4d8e991)
  • nvim-cmp completion source (3d2dc15)
  • blink.cmp completion source (3d2dc15)
  • coq_nvim completion source (#258) (#259) (75cdf9d)
  • dash width and margin percent (#272)
  • include icon provider warning in health check (032c640)
  • inline code padding (#274) (65b263d)
  • handle more list types for completions (c00cc1e)
  • include markers in completion items based on context (#277)

Bug Fixes

Collaborator Shoutouts

v7.7.0

07 Dec 20:50
v7.7.0
3a08669
Compare
Choose a tag to compare

7.7.0 (2024-12-07)

Features

Bug Fixes

Awesome Things

v7.6.0

25 Nov 17:10
Compare
Choose a tag to compare

7.6.0 (2024-11-25)

Features

  • disabling background for code now keeps border (#220) (bee16b2)
  • table support for all conceal levels (3da1bfc)
  • roll own type validation to remove vim.validate (d69a885)
  • code block language icon from extension (#233) (78a2eb7)
  • log_level off (#235) (48a52dd)
  • highlighting in double equals (d6a82d7)
  • heading border per level (#240) (c83fc56)
  • heading position right (#238) (e1879e0)

Bug Fixes

  • padding & margin for code blocks indented with tabs (#230) (d80acb3)
  • check table rows after parsing (7f0143e)
  • conceal level 2 entities in tables (430a671)
  • ignore anti conceal for inline heading icons (017f370)

v7.5.0

04 Nov 15:41
Compare
Choose a tag to compare

7.5.0 (2024-11-04)

Features

Bug Fixes

  • skip updates when state is disabled (#208) (bea6f20)
  • disable rendering when left column is > 0 (1871dc4)
  • skip updates when buffer in window changes (#209) (c6b59a2)
  • use first window if buffer is not current window (#210) (5137b5e)

v7.4.0

16 Oct 23:43
Compare
Choose a tag to compare

7.4.0 (2024-10-16)

Features

Bug Fixes

  • bullet point right padding priority (#199) (b02c8ef)
  • window offset bottom calculation (e13ac2c)