Last active
September 17, 2015 13:39
-
-
Save ewoo/969eff18c6f7b2da4372 to your computer and use it in GitHub Desktop.
My Sublime Text macro to insert date headers onto my work log. Depends on InsertDate package.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"keys": ["super+d"], "command": "run_macro_file", "args": {"file": "Packages/User/insert-date.sublime-macro"}} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "command": "insert_snippet", "args": {"contents": "$1\n-----------------\nCompleted Items:\n$0"} }, | |
{ "command": "insert_date", "args": {"format": "%a, %b %d, %Y"} }, | |
{ "command": "next_field" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put under ~/Library/Application Support/Sublime Text 2/Packages/User