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: 3b069a2ced40bf1345f3f09e383c7f12d884d7a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# ini highlighting
syntax "ini" "\.ini(\.old|~)?$"
 
# 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 ";.*$"