Last active
December 3, 2018 00:16
-
-
Save albertxing/5298255 to your computer and use it in GitHub Desktop.
LaTeX indentation rules for Sublime Text. See usage in comments below.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Indentation Rules</string> | |
<key>scope</key> | |
<string>text.tex, sources.bib</string> | |
<key>settings</key> | |
<dict> | |
<key>decreaseIndentPattern</key> | |
<string>(?x) | |
^\s*\\end\{[^\{\}]+\}.*$ | |
| ^\s*\\\].*$ | |
| ^\s*\}.* | |
| ^\s*\%.*\(end\).*$ | |
</string> | |
<key>increaseIndentPattern</key> | |
<string>(?x) | |
^\s*\\begin\{[^\{\}]+\}(\{.*\}|\[.*\])*$ | |
| ^.*\\\[\s*$ | |
| ^.*\\(.+)\{$ | |
| ^\s*\\((sub)[0,2])?section(\*)?\{.*\}.*$ | |
</string> | |
</dict> | |
<key>uuid</key> | |
<string>02EB44C6-9203-4F4C-BFCB-7E3360B12842</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LaTeX Indentation Rules for Sublime Text
Usage
Download/paste & save as
LaTeX/Indentation Rules.tmPreferences
in your user profile folder(i.e.
C:/Users/<username>/AppData/Roaming/Sublime Text 2/Packages/LaTeX
.You can find your Packages folder through Sublime's
Preferences > Browse Packages...
menu item.