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

toml.nanorc - github.com/serialhex/nano-highlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ffd5c14013fc56a8b37043b02e365a28acf0067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Supports `TOML` files
syntax "TOML" "\.toml$"

## Multiline
icolor yellow start="\"\"\"" end="\"\"\""
icolor yellow start="'''" end="'''"
icolor yellow start="\[" end="\]"

## Values
icolor yellow "=.*"

## Tables
icolor red "^\s*\[.*\]$"

## Comments (keep at the end of this file!)
icolor cyan "#.*$"