Skip to content

Instantly share code, notes, and snippets.

@albertxing
Last active December 3, 2018 00:16
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save albertxing/5298255 to your computer and use it in GitHub Desktop.
Save albertxing/5298255 to your computer and use it in GitHub Desktop.
LaTeX indentation rules for Sublime Text. See usage in comments below.
<?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>
@albertxing
Copy link
Author

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.

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