Created
June 26, 2014 15:18
-
-
Save monty5811/7391129b3693fc69988d to your computer and use it in GitHub Desktop.
Sublime text snippet for inserting LaTeX todonotes.
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
<snippet> | |
<content><![CDATA[ | |
\todo[${1:inline,}color=${2:orange}]{${3:todo}} | |
]]></content> | |
<tabTrigger>todo</tabTrigger> | |
<scope>text.tex.latex</scope> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Save this in your Sublime Text
Packages\User
folder.Then in a TeX file type
todo[tab]
to insert the snippet. Subsequent tabs moves you frominline,
to the colour to the note content.