We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72217c5 commit 865bfc8Copy full SHA for 865bfc8
addon/edit/continuelist.js
@@ -6,7 +6,7 @@
6
7
CodeMirror.commands.newlineAndIndentContinueMarkdownList = function(cm) {
8
var pos = cm.getCursor(),
9
- inList = cm.getStateAfter(pos.line).list,
+ inList = cm.getStateAfter(pos.line).list !== false,
10
match;
11
12
if (!inList || !(match = cm.getLine(pos.line).match(listRE))) {
0 commit comments