chbk
chbk
Commit https://github.com/atom/language-css/commit/43066ac0aa5e3366af74759931fbfada1a08487d seems to cause problems with syntax highlighting. Using the Tree-sitter grammar, scopes aren't being applied. language-css version 0.44.5 https://github.com/atom/language-css/commit/57531cce71821d4bd4493a2a90c12170344a56dd:  language-css with latest commit https://github.com/atom/language-css/commit/43066ac0aa5e3366af74759931fbfada1a08487d:...
```go type Node struct { value int next *Node } func (n Node) multiply(x int) int { return n.value * x } n := Node{2, nil} n.multiply(3) ``` repl.go:11:1: not...
Would it be possible to get raw read counts directly from Stringtie, instead of coverage values to transform with prepDE.py? I understand prepDE.py uses a formula that gives an estimate...
```css span:nth-child(even), tr:nth-child(2n+1), div:nth-child(4) {} ``` Arguments for pseudo-classes should have appropriate scopes. [Mozilla documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child).
This is a small PR that adds a `.jsdoc` scope to JSDoc tokens, just like [JSX](https://github.com/zed-industries/zed/blob/3fdbc3090d2cc5c2e24014009cccbe5e7c55d217/crates/languages/src/javascript/highlights.scm#L239) has a specific scope. This effectively allows differentiating between JavaScript keywords and JSDoc tags...
### Did you check the tree-sitter docs? - [x] I have read all the [tree-sitter docs](https://tree-sitter.github.io/tree-sitter/using-parsers) if it relates to using the parser ### Is your feature request related to...