move a few things away in to-be-integrated/
[myslice.git] / third-party / codemirror-3.15 / addon / edit / continuelist.js
diff --git a/third-party/codemirror-3.15/addon/edit/continuelist.js b/third-party/codemirror-3.15/addon/edit/continuelist.js
deleted file mode 100644 (file)
index fb1fc38..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-(function() {
-  'use strict';
-
-  var listRE = /^(\s*)([*+-]|(\d+)\.)(\s*)/,
-      unorderedBullets = '*+-';
-
-  CodeMirror.commands.newlineAndIndentContinueMarkdownList = function(cm) {
-    var pos = cm.getCursor(),
-        inList = cm.getStateAfter(pos.line).list,
-        match;
-
-    if (!inList || !(match = cm.getLine(pos.line).match(listRE))) {
-      cm.execCommand('newlineAndIndent');
-      return;
-    }
-
-    var indent = match[1], after = match[4];
-    var bullet = unorderedBullets.indexOf(match[2]) >= 0
-      ? match[2]
-      : (parseInt(match[3], 10) + 1) + '.';
-
-    cm.replaceSelection('\n' + indent + bullet + after, 'end');
-  };
-
-}());