Skip to content
Snippets Groups Projects
Commit a1cbbd72 authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

[sublime keymap] Fix backspacing across the start of a line

Closes #3170
parent dd2d5f3d
No related branches found
No related tags found
No related merge requests found
......@@ -416,7 +416,7 @@
var toStartOfLine = cm.getRange({line: cursor.line, ch: 0}, cursor);
var column = CodeMirror.countColumn(toStartOfLine, null, cm.getOption("tabSize"));
if (!/\S/.test(toStartOfLine) && column % cm.getOption("indentUnit") == 0)
if (toStartOfLine && !/\S/.test(toStartOfLine) && column % cm.getOption("indentUnit") == 0)
return cm.indentSelection("subtract");
else
return CodeMirror.Pass;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment