Hello!
My wish:
Color all characters between two semi-colons, except characters between brackets (for which I have another color/scope).
file1.csv
EVENT1;In a desperate effort to save [From.GetHerHis] skin, [From.GetName] has decided to abdicate the position of regent to you.;Dans un dernier effort pour sauver sa peau, [From.GetName] a décidé d'abdiquer son titre de Régent en votre faveur.;;;;;;;;;x
My csv.sublime-syntax :
file_extensions:
- csv
scope: source.csv
contexts:
main:
- match: '(^.*?);(.*?);(.*?);'
captures:
1: Code.csv
2: English.csv
3: French.csv
# Commands
- match: '\[[A-Za-z0-9_.]*?\]'
scope: Commands.csv
I read http://www.sublimetext.com/docs/3/syntax.html
I’m not a programmer and it is not easy for me. I think I need to understand multiples scopes. I tried include, meta_scope, captures, etc, but it doesn’t work as I want.
Thanks for any help.
