feat(dial): add checkbox augend for markdown (#5411)

## Description

Added support for markdown checkboxes. ( **[ ]** <-> **[x]** )

<!-- Describe the big picture of your changes to communicate to the
maintainers
  why we should accept this pull request. -->

## Related Issue(s)

<!--
  If this PR fixes any issues, please link to the issue here.
  - Fixes #<issue_number>
-->

## Screenshots

<!-- Add screenshots of the changes if applicable. -->

## Checklist

- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
This commit is contained in:
Yusuf Aktepe 2025-01-16 12:01:30 +03:00 committed by GitHub
parent 915aab99ef
commit b19f2070b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -140,6 +140,11 @@ return {
}), }),
}, },
markdown = { markdown = {
augend.constant.new({
elements = { "[ ]", "[x]" },
word = false,
cyclic = true,
}),
augend.misc.alias.markdown_header, augend.misc.alias.markdown_header,
}, },
json = { json = {