INI
Syntax highlighting for INI and REG files in Sublime Text
Details
Installs
- Total 113K
- Win 56K
- Mac 32K
- Linux 26K
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 4 | 5 | 9 | 8 | 11 | 7 | 5 | 3 | 4 | 9 | 5 | 9 | 4 | 7 | 3 | 10 | 6 | 7 | 8 | 3 | 3 | 3 | 9 | 4 | 0 | 0 | 0 | 0 | 6 | 9 | 14 | 4 | 1 | 14 | 7 | 5 | 7 | 0 | 0 | 6 | 3 | 3 | 3 | 2 | 8 | 16 |
Mac | 0 | 3 | 6 | 3 | 3 | 2 | 4 | 6 | 3 | 5 | 2 | 1 | 6 | 0 | 1 | 5 | 2 | 4 | 1 | 3 | 4 | 3 | 3 | 3 | 0 | 0 | 0 | 1 | 1 | 4 | 3 | 3 | 1 | 4 | 0 | 3 | 0 | 0 | 0 | 0 | 4 | 11 | 7 | 2 | 2 | 4 |
Linux | 2 | 2 | 3 | 2 | 3 | 3 | 5 | 6 | 4 | 4 | 7 | 1 | 1 | 1 | 2 | 1 | 3 | 4 | 7 | 5 | 1 | 5 | 4 | 4 | 0 | 0 | 0 | 1 | 4 | 2 | 4 | 5 | 0 | 3 | 2 | 1 | 0 | 0 | 0 | 3 | 4 | 2 | 0 | 2 | 5 | 4 |
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 with a "variant": 2
argument for the toggle_comment
command (this requires Sublime Text build 4130 or later):
{
"keys": ["ctrl+/"],
"command": "toggle_comment",
"args": {"block": false, "variant": 2},
"context": [{"key": "selector", "operand": "source.ini"}]
}