Skip to content

v0.9.2

Compare
Choose a tag to compare
@EmranMR EmranMR released this 06 Dec 12:55
· 34 commits to main since this release

v0.9.2 Release Notes ✨

Enhancement to The comment Node 🧹:

  • Thanks to the contribution #45 by @calebdw , the comment node definition has been improved, it is now more semantic.
  • If you are updating from <v0.9.0, make sure you change your injections.scm content:
((text) @injection.content
    (#not-has-ancestor? @injection.content "envoy")
    (#set! injection.combined)
    (#set! injection.language php))

; could be bash or zsh
; or whatever tree-sitter grammar you have.
((text) @injection.content
    (#has-ancestor? @injection.content "envoy")
    (#set! injection.combined)
    (#set! injection.language bash))

; 🚧  Available for experimental split_parser see issue #5 
;((php_only) @injection.content
;    (#set! injection.language php_only))
;((parameter) @injection.content
;    (#set! injection.language php_only))