From 533f3c6c3869782101b57cbb7bf6e31e28f91198 Mon Sep 17 00:00:00 2001 From: Wes Campaigne Date: Fri, 31 Aug 2012 00:41:49 -0400 Subject: [PATCH] Fixing unintentional advancement of caret The caret would jump forward previously, in a way that felt unnatural. This fixes it. --- Remove Empty List Item.sublime-macro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Remove Empty List Item.sublime-macro b/Remove Empty List Item.sublime-macro index 9810333f..a4fecbd3 100644 --- a/Remove Empty List Item.sublime-macro +++ b/Remove Empty List Item.sublime-macro @@ -2,5 +2,6 @@ // {"command": "expand_selection", "args": {"to": "line"} }, // {"command": "left_delete"} {"command": "run_macro_file", "args": {"file": "Packages/Default/Delete line.sublime-macro"}}, - {"command": "insert", "args": {"characters": "\n"} } + {"command": "insert", "args": {"characters": "\n"}}, + {"command": "move", "args": {"by": "characters", "forward": false}} ]