OS type:
Vim:
Vim version:
NVIM v0.4.4
Using mkdx 602a784
Reproduce steps:
Use the following markdown file.
Test1
=====
This is a test
indented code block
- Imediatly after
indented code block press enter.
Expected:
The cursor goes to next line.
Actual:
The line is deleted 🤯 . Note: the same happens when pressing 'o' while the cursor is on indented code block line
I thought I had a conflict with all my mods, so I created a clean setup with no mods except this one, and a init.vim like below, and it still exhibits the problem.
" mkdx - markdown formating plugin {{{
let g:mkdx#settings = { 'highlight': { 'enable': 1 },
\ 'enter': { 'shift': 1 },
\ 'links': { 'external': { 'enable': 0 } },
\ 'table': { 'align': { 'left':[], 'center':[],'right':[], 'default': 'left' } },
\ 'toc': { 'text': 'Table of Contents', 'update_on_write': 1 },
\ 'fold': { 'enable': 1 },
\ 'map': { 'prefix': 'm' } }
let g:polyglot_disabled = ['markdown'] " for vim-polyglot users, it loads Plasticboy's markdown
:let g:mkdx#settings.gf_on_steroids = 1
" }}}
Thanks!
OS type:
Vim:
Vim version:
NVIM v0.4.4
Using mkdx 602a784
Reproduce steps:
Use the following markdown file.
indented code blockpress enter.Expected:
The cursor goes to next line.
Actual:
The line is deleted 🤯 . Note: the same happens when pressing 'o' while the cursor is on
indented code blocklineI thought I had a conflict with all my mods, so I created a clean setup with no mods except this one, and a init.vim like below, and it still exhibits the problem.
Thanks!