mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
* [FilePreview] Use syntax highlighting for .srt * Change customTokenColors to customTokenThemeRules * Ignore text on the same line as a timestamp * Update tokenization rules
13 lines
401 B
JavaScript
13 lines
401 B
JavaScript
export function gitignoreDefinition() {
|
|
return {
|
|
defaultToken: 'invalid',
|
|
|
|
tokenizer: {
|
|
root: [
|
|
[/^#.*$/, 'comment'],
|
|
[/.*((?<!(^|\/))\*\*.*|\*\*(?!(\/|$))).*/, 'invalid'],
|
|
[/((?:^!\s*(?:\\\s|\S)+)?)((?:^\s*(?:\\\s|\S)+)?)((?:\s+(?:\\\s|\S)+)*)/, ['custom-negation', 'tag', 'invalid']]
|
|
]
|
|
}
|
|
};
|
|
} |