Texto sublime - Modificando o arquivo tmTheme

No.tmTheme Arquivo:

<dict>
    <key>name</key>
    <string>Entity name</string>
    <key>scope</key>
    <string>entity.name - (entity.name.filename | entity.name.section | entity.name.tag | entity.name.label)</string>
    <key>settings</key>
    <dict>
        <key>fontStyle</key>
        <string></string>
        <key>foreground</key>
        <string>#A6E22E</string>
    </dict>
</dict>

A próxima sequência de escopo:

<string>entity.name - (entity.name.filename | entity.name.section | entity.name.tag | entity.name.label)</string>

É um tipo de expressão regular? O que se aplica a esta definição? Em outra parte do mesmo arquivo, posso ver algo assim:

<string>variable.parameter - (source.c | source.c++ | source.objc | source.objc++)</string>

questionAnswers(1)

yourAnswerToTheQuestion