Hello,
When using the built in Command insertNewlineContinueMarkup
from the lang-markdown package. Its behavior works as expected for the most part. However, there is a glaring problem in my setup that I’m unable to verify if this is intended or not:
When I type a list and press enter afterwards everything works as expected.
1. Hello, world!
2. (my cursor is here now)
Let’s say I just wanted that for my list, in the demo editor for cm-5 as well as most other online editors, I would press enter to get rid of the 2. and go to the next line. But I get this result:
1. Hello, world!
2. (my cursor is still here)
expected result:
1. Hello, world!
(Cursor sitting here)
This happens with -
lists, and quotes >
however in the case of the quotes it actually removes both the trailing >
from the last 2 lines correctly to clean up.
Is this an intentional behavior? Is this a bug with my implementation? I’m more or less using a barebones setup (just the markdown plugin and the tab plugin. I’m adding my own plugin for further keymaps but it doesn’t touch Enter) But this behavior deviates from what I’ve seen on this forum as well as the cm 5 behavior.