You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Details
When debugging marks on current row we used the `config:hidden` method
which would return `nil` if anti conceal was disabled. Probably fairly
uncommon, but still, there is no need to rely on this.
So instead we create the `Range` for the current row directly when
debugging marks, bypassing any logic inside `config`.
This logic has also been almost entirely moved to the debug marks module
and out of ui. To support this ui publicly exposes what used to be in
`Cache.get(buf)` from which we can get `extmarks` using `get_marks()`.
Other minor changes:
- make `cache` part of each module rather than local variables
- move creation of main config into `Config` module
- replace `string.<method>(<s>, ...)` -> `(<s>):<method>(...)`
- rename `bg_to_fg` -> `bg_as_fg`
- rename `release_notification` -> `release`
- use local change of panvimdoc to pull `vim-version` dynamically
- update changelog
- include removed values in config diff [6531aa7](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/6531aa7f615926de1962102d90fff69665b672d7)
12
+
- support wiki style media links, improve custom links [#410](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/410)
- set quote highlights for 6 levels of nesting [7051859](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/70518594a4bf1a35d4e331677dd86bc065e599a4)
- use conceal lines for setext heading underline [78ffe3b](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/78ffe3b0500bbc7e37fabde723d96661538e8b32)
11
19
12
20
### Bug Fixes
13
21
@@ -16,6 +24,10 @@
16
24
- disable line wrapping in LSP hover docs in some cases [#408](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/408)
0 commit comments