fix remove left

This commit is contained in:
Fabian Jakobs 2011-11-02 18:25:38 +01:00
commit caac348e10

View file

@ -260,7 +260,7 @@ exports.commands = [{
"Ctrl-Backspace|Command-Backspace|Option-Backspace|Shift-Backspace|Backspace",
"Ctrl-Backspace|Command-Backspace|Shift-Backspace|Backspace|Ctrl-H"
),
exec: function(env, args) { env.editor.removeLeft(); }
exec: function(env, args) { env.editor.remove("left"); }
}, {
name: "removetolinestart",
bindKey: bindKey("Alt-Backspace", "Option-Backspace"),