Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roodolv/markdown-toggle.nvim
A Neovim plugin that provides a simple and useful set of toggle commands for Markdown.
https://github.com/roodolv/markdown-toggle.nvim
document editing markdown neovim neovim-plugin obsidian toggle
Last synced: 29 days ago
JSON representation
A Neovim plugin that provides a simple and useful set of toggle commands for Markdown.
- Host: GitHub
- URL: https://github.com/roodolv/markdown-toggle.nvim
- Owner: roodolv
- License: mit
- Created: 2024-07-11T10:27:16.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-30T15:31:30.000Z (about 1 month ago)
- Last Synced: 2024-10-01T09:41:06.245Z (about 1 month ago)
- Topics: document, editing, markdown, neovim, neovim-plugin, obsidian, toggle
- Language: Lua
- Homepage:
- Size: 13.7 KB
- Stars: 32
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# markdown-toggle.nvim
A simple and useful set of toggle commands for Markdown. Similar to [Obsidian](https://obsidian.md)
### Features
- Handles quotes, headings, lists (unordered and ordered), and checkboxes
![markdown_common](https://github.com/roodolv/markdown-toggle.nvim/assets/113752412/a6843366-ba67-4828-a6c3-780a2e0fba5c)- Cycle through different levels of headings, types of lists, and states of checkboxes
![cyclic_toggling01](https://github.com/roodolv/markdown-toggle.nvim/assets/113752412/f52d5719-5a9a-4770-b149-808f673a1a3f)
![cyclic_toggling02](https://github.com/roodolv/markdown-toggle.nvim/assets/113752412/585fa715-2df8-40df-8f69-bca478340c30)- Automatically continue quotes, lists, and checkboxes when starting a new line
- Use Vim's dot (`.`) command to repeat toggle actions (only in Normal mode)
- Change plugin settings **on-the-fly**
- Unmarked Only: Toggle only unmarked lines initially
- Blankhead Skip: Skip blank lines and headings in Visual mode (except for `quote()`)
- Inner Indent: Insert an indent for new lines within quoted text
- Autolist Same-state: Maintain checkbox state when continuing lists
![config_switch01](https://github.com/roodolv/markdown-toggle.nvim/assets/113752412/d34359b2-febe-4165-ba77-eeee79676a95)
![config_switch02](https://github.com/roodolv/markdown-toggle.nvim/assets/113752412/97f9667d-a2c4-4351-9a30-6a370827e48f)## Installation
lazy.nvim
```lua
{
"roodolv/markdown-toggle.nvim",
config = function()
require("markdown-toggle").setup()
end,
},
```packer.nvim
```lua
use {
"roodolv/markdown-toggle.nvim",
config = function()
require("markdown-toggle").setup()
end,
}
```vim-plug
```lua
Plug "roodolv/markdown-toggle.nvim"
```### Other Plugin Managers
For specific installation instructions, please refer to the documentation of your preferred plugin manager.## Configuration
### Minimal Setup
Include this single line in your `init.lua` or config:
```lua
require("markdown-toggle").setup()
```### Default Config
The default settings are as follows:
```lua
require("markdown-toggle").setup({
-- If true, the auto-setup for the default keymaps is enabled
use_default_keymaps = false,
-- The keymaps are valid only for these filetypes
filetypes = { "markdown", "markdown.mdx" },-- Cycle the marks in user-defined table when toggling lists
enable_list_cycle = false,
-- The list marks table used in cycle-mode (list_table[1] is used as the default list-mark)
list_table = { "-", "+", "*", "=" },-- Cycle the marks in user-defined table when toggling checkboxes
enable_box_cycle = false,
-- The checkbox marks table used in cycle-mode (box_table[1] is used as the default checked-state)
box_table = { "x", "~", "!", ">" },-- Mimic the behavior of Obsidian's "Toggle bullet list" on `list()`
mimic_obsidian_list = true,
-- Mimic the behavior of Obsidian's "Cycle bullet/checkbox" on `checkbox()`
mimic_obsidian_cycle = true,-- The heading marks table used in `markdown-toggle.heading`
heading_table = { "#", "##", "###", "####", "#####" },-- Skip blank lines and headings in Visual mode (except for quotes)
enable_blankhead_skip = true,
-- Insert an indented quote for new lines within quoted text
enable_inner_indent = false,
-- Toggle only unmarked lines first
enable_unmarked_only = true,
-- Automatically continue lists on new lines
enable_autolist = true,
-- Maintain checkbox state when continuing lists
enable_auto_samestate = false,
-- Dot-repeat for toggle functions in Normal mode
enable_dot_repeat = true,
})
```## Keymaps
### Auto-setup
For a quick start with default keymaps, add this to your setup:
```lua
require("markdown-toggle").setup({
use_default_keymaps = true,
})
```### Manual-setup Examples
First, set up the common autocmd structure:
```lua
vim.api.nvim_create_autocmd("FileType", {
desc = "markdown-toggle.nvim keymaps",
pattern = { "markdown", "markdown.mdx" },
callback = function(args)
local opts = { silent = true, noremap = true, buffer = args.buf }
local toggle = require("markdown-toggle")-- Keymap configurations will be added here for each feature
end,
})
```#### Dot-repeat
If you set `enable_dot_repeat = true` (default):
```lua
opts.expr = true -- required for dot-repeat in Normal mode
vim.keymap.set("n", "", toggle.quote_dot, opts)
vim.keymap.set("n", "", toggle.list_dot, opts)
vim.keymap.set("n", "", toggle.olist_dot, opts)
vim.keymap.set("n", "", toggle.checkbox_dot, opts)
vim.keymap.set("n", "", toggle.heading_dot, opts)opts.expr = false -- required for Visual mode
vim.keymap.set("x", "", toggle.quote, opts)
vim.keymap.set("x", "", toggle.list, opts)
vim.keymap.set("x", "", toggle.olist, opts)
vim.keymap.set("x", "", toggle.checkbox, opts)
vim.keymap.set("x", "", toggle.heading, opts)
```If you set `enable_dot_repeat = false`:
```lua
vim.keymap.set({ "n", "x" }, "", toggle.quote, opts)
vim.keymap.set({ "n", "x" }, "", toggle.list, opts)
vim.keymap.set({ "n", "x" }, "", toggle.olist, opts)
vim.keymap.set({ "n", "x" }, "", toggle.checkbox, opts)
vim.keymap.set({ "n", "x" }, "", toggle.heading, opts)
```#### Autolist
If you set `enable_autolist = true` (default):
```lua
vim.keymap.set("n", "O", toggle.autolist_up, opts)
vim.keymap.set("n", "o", toggle.autolist_down, opts)
vim.keymap.set("i", "", toggle.autolist_cr, opts)
```#### Config-switch
You can switch various options in the comfort of your active buffer, without the need to restart or reload Neovim.
```lua
vim.keymap.set("n", "mU", toggle.switch_unmarked_only, opts)
vim.keymap.set("n", "mB", toggle.switch_blankhead_skip, opts)
vim.keymap.set("n", "mI", toggle.switch_inner_indent, opts)
vim.keymap.set("n", "mS", toggle.switch_auto_samestate, opts)
vim.keymap.set("n", "mL", toggle.switch_list_cycle, opts)
vim.keymap.set("n", "mX", toggle.switch_box_cycle, opts)
```## API
This plugin provides the following set of API functions:| type | function | vim-mode |
| -- | -- | -- |
| Quotes | `quote()` | Normal, Visual |
| | `quote_dot()` | Normal |
| Lists | `list()` | Normal, Visual |
| | `list_dot()` | Normal |
| Ordered Lists | `olist()` | Normal, Visual |
| | `olist_dot()` | Normal |
| Checkboxes | `checkbox()` | Normal, Visual |
| | `checkbox_dot()` | Normal |
| Headings | `heading()` | Normal, Visual |
| | `heading_dot()` | Normal |
| Autolist | `autolist_up()`
`autolist_down()` | Normal |
| | `autolist_cr()` | Insert |
| Config-switch | `switch_unmarked_only()`
`switch_blankhead_skip()`
`switch_inner_indent()`
`switch_auto_samestate()`
`switch_list_cycle()`
`switch_box_cycle()`
`switch_mimic_obsidian_list()`
`switch_mimic_obsidian_cycle()` | Normal |## Tips
### Mimicking Obsidian
If you don't want to mimic [Obsidian](https://obsidian.md)'s behavior, set `mimic_obsidian_list` and `mimic_obsidian_cycle` to `false` in your `init.lua` or config.These options are set to `true` by default.
API functions are available, allowing you to set keymaps for switching them.
- `switch_mimic_obsidian_list()`
- `switch_mimic_obsidian_cycle()`#### `mimic_obsidian_list`
- `mimic_obsidian_list = true`:
```
- [ ] foo
↓ execute `list()`
foo
↓
- foo
↓
foo
↓
```- `mimic_obsidian_list = false`:
```
- [ ] foo
↓ execute `list()`
- foo
↓
foo
↓
- foo
↓
```#### `mimic_obsidian_cycle`
- `mimic_obsidian_cycle = true`:
```
foo
↓ execute `checkbox()` with `enable_box_cycle = true`
- foo
↓
- [ ] foo
↓
- [x] foo
↓
- [~] foo
↓
- foo
↓
- [ ] foo
↓
```- `mimic_obsidian_cycle = false`:
```
foo
↓ execute `checkbox()` with `enable_box_cycle = true`
- [ ] foo
↓
- [x] foo
↓
- [~] foo
↓
- [ ] foo
↓
```## Related Plugins
- [markdowny.nvim](https://github.com/antonk52/markdowny.nvim)
- If you want to easily apply or toggle **code, codeblock, link, bold, or italic** formatting on Markdown text, this may be ideal for you.
- [nvim-surround](https://github.com/kylechui/nvim-surround)
- For more information and implementation details, check out this:
- [Surrounds Showcase](https://github.com/kylechui/nvim-surround/discussions/53)
- [obsidian.nvim](https://github.com/epwalsh/obsidian.nvim)## References
- [mder.nvim](https://github.com/phanen/mder.nvim)
- [markdown-togglecheck](https://github.com/nfrid/markdown-togglecheck)## Todo
- [ ] Rename and consolidate options
- Use more generic config names
- [ ] Expand the README with config examples inspired by popular Markdown editors
- [ ] Allow `quote()` to be used without whitespace at the beginning of a line
- [ ] Implement recalculation of ordered lists
- [ ] Improve Visual-mode behavior of `heading()` for lines that start with `#`
- [ ] Implement plugin commands (e.g., `:MarkdownToggleQuote`) to call API functions
- [ ] Integrate `v:count` (`vim.v.count`) support to handle repeated actions
- Example: `2` should invoke the `heading()` function twice