Skip to content

Instantly share code, notes, and snippets.

@djbrugh
Created May 21, 2014 01:11
Show Gist options
  • Save djbrugh/3f6984fd764ce680edc9 to your computer and use it in GitHub Desktop.
Save djbrugh/3f6984fd764ce680edc9 to your computer and use it in GitHub Desktop.
Sublime Text 3 macro for inserting \uncover<> and placing the curser between the angle brackets. Used when writing Beamer files.
[
{
"args":
{
"characters": "\\uncove"
},
"command": "insert"
},
{
"args":
{
"characters": "r"
},
"command": "insert"
},
{
"args":
{
"contents": "<${1:+-}>$0"
},
"command": "insert_snippet"
},
{
"args": null,
"command": "left_delete"
}
]
@djbrugh
Copy link
Author

djbrugh commented May 21, 2014

For ST3 to see this macro, it should be stored in the ST3 Packages/User folder. On my systems this folder is stored in Dropbox so it can be symlinked to the folder on the local mac.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment