Markdown Continue
Continue lists and blockquotes on pressing enter. Compatible with Neo Vim.
Features
Besides the expected:
- Auto-increment numbered lists.
- Terminate lists and blockquotes by pressing enter twice.
Default keybinds
{
"command": "markdown-continue.continueSequence",
"key": "enter",
// Limited to insert mode if neovim is present.
"when": "resourceLangId == markdown && !neovim.mode || resourceLangId == markdown && neovim.mode == 'insert'"
}
Vim tip
Add the following in your init.vim to autoinsert prefixes using o and O . It works by treating the prefixes as comments. See :h comments .
filetype plugin indent on
set autoindent
set smartindent
set breakindent
autocmd FileType markdown set comments=:*\ ,:>\
set formatoptions+=ro
| |