What does `L:` mean in `"injectionSelector": "L:markup.fenced_code.block.markdown"`?

Viewed 883
1 Answers

The L: specifies injection priority. It means that the rule will be injected to the left of any existing rules in the same scope, i.e. it will be applied before the other rules

Related