Skip to content

Instantly share code, notes, and snippets.

View tushortz's full-sized avatar
❤️
One Love

Taiwo Kareem tushortz

❤️
One Love
View GitHub Profile
@tushortz
tushortz / scopes.txt
Last active September 8, 2015 12:02 — forked from iambibhas/scopes.txt
Sublime Text 2: Snippet scopes
Here is a list of scopes to use in Sublime Text 2 snippets -
Actionscript: source.actionscript, source.actionscript.2
Active4D: source.active4d
Active4D_Html: text.html.strict.active4d
Active4D_Ini: text.active4d-ini
Active4D_Library: source.active4d.library
Ada: source.ada
Antlr: source.antlr
Apache: source.apache-config
@tushortz
tushortz / sphinx.sublime-build
Last active April 8, 2017 16:37
Sphinx Sublime build
To create a Sphinx sublime build, open Sublime, Go to Tools --> Bulid system --> New build system and type in the following code.
I have only tried it on windows so far and it worked.
Make sure you have sphinx installed and change the path to the script. may be python27 instead of python34
{
"cmd": ["c:/Python34/Scripts/sphinx-build.exe", "-b", "html", "$filedir", "_build/html"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "text.restructuredtext"
}