This commit is contained in:
ed 2020-12-14 03:51:24 +01:00
parent 5c18d12cbf
commit d08245c3df
2 changed files with 6 additions and 2 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (0, 6, 0)
VERSION = (0, 6, 1)
CODENAME = "CHRISTMAAAAAS"
BUILD_DT = (2020, 12, 1)
BUILD_DT = (2020, 12, 14)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -660,6 +660,10 @@ function md_backspace() {
if (/^\s*$/.test(left))
return true;
// same if selection
if (o0 != dom_src.selectionEnd)
return true;
// same if line is all-whitespace or non-markup
var v = m[0].replace(/[^ ]/g, " ");
if (v === m[0] || v.length !== left.length)