Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ini.nanorc - github.com/serialhex/nano-highlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfc0aca484f233f1db8e163b42a78f7a60709f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
syntax "ini" "\.ini(\.old|\.bak|\.example|~)?$"
 
## Values
color brightred "=.*$"

## Equal sign
color green "="

## Numbers
color brightblue "-?[0-9\.]+\s*($|;)"

## ON/OFF
color brightmagenta "(ON|OFF|On|Off|on|off)\s*($|;)"

## Sections
color brightcyan "^\s*\[.*\]"

## Keys
color cyan "^\s*[a-zA-Z0-9_\.]+"

## Comments
color brightyellow ";.*$"