nvim-treesitter/runtime
Sam eb3911d052
fix(nix): match writers in nested attrpaths
The current Nix injections don't mark this as bash:

```nix
pkgs.writers.writeBash "" ''
  echo Hello, world!
''
```

but do mark this as bash:

```nix
writers.............................writeBash "" ''
  echo hi
''
```

(and similar for other languages). Note that in
order to solve this issue, I had to swap from
Lua patterns to Vim regexps, which I know is less
efficient. Unfortunately Lua patterns don't let you
use modifiers on groups, so I swapped.
2026-01-24 19:24:51 -07:00
..
queries fix(nix): match writers in nested attrpaths 2026-01-24 19:24:51 -07:00