INI
Syntax highlighting for INI and REG files in Sublime Text
Details
Installs
- Total 104K
- Win 51K
- Mac 30K
- Linux 24K
Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 16 | 15 | 9 | 1 | 12 | 12 | 9 | 15 | 13 | 6 | 7 | 10 | 11 | 6 | 14 | 9 | 14 | 9 | 6 | 12 | 7 | 6 | 6 | 10 | 8 | 14 | 19 | 13 | 9 | 6 | 9 | 7 | 12 | 10 | 12 | 8 | 2 | 6 | 6 | 4 | 11 | 11 | 5 | 8 | 8 | 5 |
Mac | 3 | 4 | 5 | 1 | 3 | 8 | 5 | 9 | 5 | 5 | 1 | 2 | 4 | 9 | 5 | 8 | 4 | 3 | 2 | 8 | 7 | 0 | 3 | 6 | 4 | 2 | 6 | 4 | 2 | 7 | 10 | 7 | 3 | 1 | 3 | 5 | 5 | 0 | 0 | 1 | 3 | 3 | 4 | 2 | 1 | 3 |
Linux | 3 | 5 | 11 | 2 | 4 | 10 | 3 | 8 | 8 | 4 | 6 | 2 | 3 | 4 | 4 | 5 | 6 | 3 | 5 | 9 | 8 | 2 | 5 | 10 | 5 | 4 | 3 | 4 | 8 | 2 | 4 | 2 | 0 | 4 | 4 | 4 | 5 | 7 | 4 | 0 | 3 | 5 | 3 | 2 | 2 | 1 |
Readme
- Source
- raw.githubusercontent.com
INI Syntax
A package for Sublime Text that provides syntax highlighting for INI and related file types like Windows Registry (.reg) files.
Installation
The package can be installed via Sublime Text's package manager Package Control. From the command palette choose Package Control: Install Package and search for INI.
Features
You can navigate between sections in opened INI files via Sublime's Goto Symbol… feature from the menu or with the keyboard shortcut Ctrl+R (⌘+R on macOS).
Customization
Syntax highlighting
Following the naming conventions for key-value pairs, the scopes meta.mapping.key.ini string
and meta.mapping.value.ini string
are applied for keys and string values, respectively.
If you prefer different highlighting colors for key names and values, ensure to use a color scheme which targets one of these scopes to distinguish between them.
You can easily add such a rule as a customization to your color scheme, as described in the official documentation.
For example, if you want keys to be highlighted with the same color as keywords in Mariana, create a file Mariana.sublime-color-scheme
in your Packages/User directory with the following content:
{
"rules": [
{
"scope": "meta.mapping.key.ini string",
"foreground": "var(pink)"
}
]
}
Comment toggling
The default character used by the “toggle comment” functionality (Ctrl+/) in INI files is a semicolon.
If you prefer to use #
instead, you can achieve that by adding a custom key binding (this requires Sublime Text build 4130 or later):
{
"keys": ["ctrl+/"],
"command": "toggle_comment",
"args": {"block": false, "variant": 2},
"context": [{"key": "selector", "operand": "source.ini"}]
}