Metadata Files¶
Overview¶
Metadata are parameters that can be assigned to certain text sections using scope selectors.
These paremeters can be used for many purposes; for example:
- specifying the current comment markers, even within embedded source code, so that you can toggle comments in any syntax,
- defining rules for auto-indentation,
- marking symbols that Sublime Text will allow you to browse to quickly.
Furthermore, snippets can access metadata
declared in the shellVariables setting,
which allows you to create a snippet
that has different contents
depending on where it’s used.
File Format¶
Metadata files have the .tmPreferences extension
and use the Property List format.
The file name is ignored by Sublime Text.
Metadata files are inherited from TextMate.
Example¶
Here’s an example of a metadata file:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>JavaScript Metadata</string>
<key>scope</key>
<string>source.js</string>
<key>settings</key>
<dict>
<key>decreaseIndentPattern</key>
<string>^(.*\*/)?\s*\}.*$</string>
<key>increaseIndentPattern</key>
<string>^.*\{[^}"']*$</string>
<key>bracketIndentNextLinePattern</key>
<string>(?x)
^ \s* \b(if|while|else)\b [^;]* $
| ^ \s* \b(for)\b .* $
</string>
</dict>
<dict>
<key>shellVariables</key>
<array>
<dict>
<key>name</key>
<string>TM_COMMENT_START</string>
<key>value</key>
<string>// </string>
</dict>
<dict>
<key>name</key>
<string>TM_COMMENT_START_2</string>
<key>value</key>
<string>/*</string>
</dict>
<dict>
<key>name</key>
<string>TM_COMMENT_END_2</string>
<key>value</key>
<string>*/</string>
</dict>
</array>
</dict>
<key>uuid</key>
<string>BC062860-3346-4D3B-8421-C5543F83D11F</string>
</dict>
</plist>
The example file combines several types of metadata.
Structure of a Metadata File¶
All metadata files share the same topmost structure, which is inherited from the Property List format.
<?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>
...
</dict>
</plist>
Sublime Text uses the following topmost keys in metadata files; all others are ignored by default.
nameOptional. Name of the metadata. Ignored by Sublime Text.
<key>name</key> <string>Shell Variables</string>
scopeRequired. Scope selector to determine in which context the metadata should be available.
<key>scope</key> <string>source.python</string>
settingsRequired. Container for settings.
<key>settings</key> <dict> ... </dict>
uuidOptional. A unique identifier for the file. Ignored by Sublime Text.
<key>uuid</key> <string>BC062860-3346-4D3B-8421-C5543F83D11F</string>
Subelements of settings¶
The settings element can contain
subelements for different purposes,
which will be grouped in the following sections.
Some subelements have certain functionality associated with them by default, while others can only be accessed via the API.
Indentation Options (Children of settings)¶
Indentation options control aspects of the auto-indentation mechanism.
increaseIndentPatternRegex. If it matches on the current line, the next line will be indented one level further.
<key>increaseIndentPattern</key> <string>insert regex here</string>
decreaseIndentPatternRegex. If it matches on the current line, the next line will be unindented one level.
<key>decreaseIndentPattern</key> <string>insert regex here</string>
bracketIndentNextLinePatternRegex. If it matches on the current line, only the next line will be indented one level further.
<key>bracketIndentNextLinePattern</key> <string>insert regex here</string>
disableIndentNextLinePatternRegex. If it matches on the current line, the next line will not be indented further.
<key>disableIndentNextLinePattern</key> <string>insert regex here</string>
unIndentedLinePatternRegex. The auto-indenter will ignore lines matching this regex when computing the next line’s indentation level.
<key>unIndentedLinePattern</key> <string>insert regex here</string>
Completions Options (Child of settings)¶
Completion options control aspects of the completions mechanism.
cancelCompletionRegex. If it matches on the current line, supresses the autocomplete popup.
<key>cancelCompletion</key> <string>insert regex here</string>
Symbol Definitions (Child of settings)¶
Documentation for symbol definitions was moved to a separate page: Symbol Definition settings.
Shell Variables (Child of settings)¶
Shell variables are used for different purposes and can be accessed from snippets.
Note that shell variables are defined
as dictionaries in an array,
and thus have a different format
from settings subelements.
shellVariablesContainer for “shell variables”.
<key>shellVariables</key> <array> ... </array>