Skip to content

Commit

Permalink
Fixing unintentional advancement of caret
Browse files Browse the repository at this point in the history
The caret would jump forward previously, in a way that felt unnatural.
This fixes it.
  • Loading branch information
Westacular committed Aug 31, 2012
1 parent 54066ce commit 533f3c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Remove Empty List Item.sublime-macro
Expand Up @@ -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}}
]

0 comments on commit 533f3c6

Please sign in to comment.