No clear instructions on how to use rules
Closed this issue · 1 comments
Dalia-Siblini commented
In the Readme file, you specified that:
Rules
An array of objects with the following attributes:
One of:
pattern: A single regex pattern patterns: An array of regex patterns
And one of (or both):
extensions: An array of file-extensions languages: An array of language identifiers
Can you please give some examples on the syntax?
I'm not sure how to implement it. I tried the following combinations, but they did not seem to work:
- ["pattern, extension"]
- ["pattern", "extension"]
- ["pattern", "language"]
- [["pattern"], ["extension"]]
note that i'm writing these settings in the settings.json file in VSCode
Thanks!
dustinlacewell commented
An array of these:
export type DimmingRule = {
pattern?: string;
patterns?: string[];
extensions?: string[];
languages?: string[];
};
https://github.com/dustinlacewell/matched-line-dimmer-vsix/blob/main/src/DimmingRule.ts