<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvim-treesitter/queries/php, branch fix/lua</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/nvim-treesitter/atom?h=fix%2Flua</id>
<link rel='self' href='http://git.sudomsg.com/mirror/nvim-treesitter/atom?h=fix%2Flua'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/'/>
<updated>2025-05-12T16:43:40Z</updated>
<entry>
<title>feat!: drop modules, general refactor and cleanup</title>
<updated>2025-05-12T16:43:40Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-06-12T15:54:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=692b051b09935653befdb8f7ba8afdb640adf17b'/>
<id>urn:sha1:692b051b09935653befdb8f7ba8afdb640adf17b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(format): extra newline after modeline</title>
<updated>2024-02-29T14:05:30Z</updated>
<author>
<name>Phạm Huy Hoàng</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2024-02-18T15:00:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=62b0bb4f24ad09f535efe44cc9d088f90dcd2498'/>
<id>urn:sha1:62b0bb4f24ad09f535efe44cc9d088f90dcd2498</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat: add the php_only parser included in tree-sitter-php (#5876)</title>
<updated>2024-01-20T12:34:49Z</updated>
<author>
<name>tk-shirasaka</name>
<email>tk.shirasaka@gmail.com</email>
</author>
<published>2024-01-20T12:34:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=64b3d5e5698d485a4f197ffbe85a4b6c29e16325'/>
<id>urn:sha1:64b3d5e5698d485a4f197ffbe85a4b6c29e16325</id>
<content type='text'>
Add parser  `php_only` for PHP files without HTML embedded.
Make queries for combined parser `php` inherit from `php_only` (no extensions needed).

---------

Co-authored-by: shirasaka &lt;tk.shirasaka@gmail&gt;</content>
</entry>
<entry>
<title>chore: query formatting</title>
<updated>2024-01-19T15:58:37Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2024-01-06T06:05:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9'/>
<id>urn:sha1:57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat!: align standard captures with upstream</title>
<updated>2024-01-19T15:58:37Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-12-24T09:00:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=1ae9b0e4558fe7868f8cda2db65239cfb14836d0'/>
<id>urn:sha1:1ae9b0e4558fe7868f8cda2db65239cfb14836d0</id>
<content type='text'>
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.

Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.

Specifically:

* tree-sitter "standard capture names"
  (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):

  - `@parameter` -&gt; `@variable.parameter`
  - `@field` -&gt; `@variable.member`
  - `@namespace` -&gt; `@module`
  - `@float` -&gt; `@number.float`
  - `@symbol` -&gt; `@string.special.symbol`
  - `@string.regex` -&gt; `@string.regexp`
  - `@text.*` -&gt; `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
  - `@text.title` -&gt; `@markup.heading`
  - `@text.literal` -&gt; `@markup.raw`
  - `@text.reference` -&gt; `@markup.link`
  - `@text.uri` -&gt; `@markup.link.url` (in markup links)
  - `@string.special` -&gt; `@markup.link.label` (non-url links)
  - `@punctuation.special` -&gt; `@markup.list` (markdown lists only; move subitems from `@text.todo`)

* Helix captures
  (https://docs.helix-editor.com/master/themes.html#syntax-highlighting):

  - `@method` -&gt; `@function.method`
  - `@method.call` -&gt; `@function.method.call`
  - `@text.{todo,warning,note,danger}` -&gt; `@comment.{error,warning,hint,info,todo}`
  - `@text.diff.{add,delete,}` -&gt; `@diff.{plus,minus,delta}`
  - `@text.uri` -&gt; `@string.special.url` (outside markup)
  - `@preproc` -&gt; `@keyword.directive`
  - `@define` -&gt; `@keyword.directive`(`.define`?)
  - `@storageclass` -&gt; `@keyword.storage`
  - `@conditional` -&gt; `@keyword.conditional`
  - `@debug` -&gt; `@keyword.debug`
  - `@exception` -&gt; `@keyword.exception`
  - `@include` -&gt; `@keyword.import`
  - `@repeat` -&gt; `@keyword.repeat`

* cleanup

  - remove some redundant `@conceal` (but still allow it for conceal-only patterns)
  - remove obsolete `@error` (syntax linting is out of scope for this repo)
  - sort, cleanup capture list in `CONTRIBUTING.md`
</content>
</entry>
<entry>
<title>feat(locals)!: switch to upstream captures</title>
<updated>2024-01-19T15:58:37Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-07-22T13:29:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=5b90ea2abaa4303b9205b5c9002a8cdd0acd11a5'/>
<id>urn:sha1:5b90ea2abaa4303b9205b5c9002a8cdd0acd11a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>refactor: Remove all `(ERROR) @error` captures</title>
<updated>2023-10-25T16:18:50Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-10-25T07:45:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=107e61afb7129d637ea6c3c68b97a22194b0bf16'/>
<id>urn:sha1:107e61afb7129d637ea6c3c68b97a22194b0bf16</id>
<content type='text'>
As discussed in PR#5421, capturing `@error` is inconsistent, requiring
deep nesting (or priority) in order to correctly have red backgrounds to
it.

Some queries has this capture, some don't. For consistency purposes,
removing all of them is more preferable.

For re-enabling error, either add `(ERROR) @error` or `(ERROR _ @error)`
to your custom queries.
</content>
</entry>
<entry>
<title>refactor: improve readability</title>
<updated>2023-10-15T18:34:32Z</updated>
<author>
<name>Carlos Afonso</name>
<email>afonso.carlos.braga@gmail.com</email>
</author>
<published>2023-10-07T17:37:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=981b13b886d69e395bed1840790ea9e38f73266a'/>
<id>urn:sha1:981b13b886d69e395bed1840790ea9e38f73266a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php): fix indentation for in between braces</title>
<updated>2023-10-15T18:34:32Z</updated>
<author>
<name>Carlos Afonso</name>
<email>afonso.carlos.braga@gmail.com</email>
</author>
<published>2023-10-06T17:34:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=bf87a16712124ed8485e359fda321861de769d2a'/>
<id>urn:sha1:bf87a16712124ed8485e359fda321861de769d2a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php): highlight `never` as `@type.builtin` (#5522)</title>
<updated>2023-10-14T12:04:06Z</updated>
<author>
<name>nsfisis</name>
<email>54318333+nsfisis@users.noreply.github.com</email>
</author>
<published>2023-10-14T12:04:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=ad02fbcdfc391017cad462e04e4740d2887cfa2e'/>
<id>urn:sha1:ad02fbcdfc391017cad462e04e4740d2887cfa2e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fixup: php injections</title>
<updated>2023-08-12T15:45:44Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-08-12T15:45:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=800b2f388b0f880be8a2fcd29494f7459af30a21'/>
<id>urn:sha1:800b2f388b0f880be8a2fcd29494f7459af30a21</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php): heredocs injections &amp; highlights</title>
<updated>2023-08-12T15:34:15Z</updated>
<author>
<name>ObserverOfTime</name>
<email>chronobserver@disroot.org</email>
</author>
<published>2023-08-11T11:33:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=d8e625df2d8718ecdd6395832e992de1ba1b4973'/>
<id>urn:sha1:d8e625df2d8718ecdd6395832e992de1ba1b4973</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add PHP heredoc and nowdoc injections (#4866)</title>
<updated>2023-08-12T15:34:15Z</updated>
<author>
<name>CalebW</name>
<email>cdwhite3@pm.me</email>
</author>
<published>2023-05-30T12:34:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=246f4cc20cbbae7d110863149e070b6b57dabbfe'/>
<id>urn:sha1:246f4cc20cbbae7d110863149e070b6b57dabbfe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>chore(injections)!: update injection syntax to 0.9</title>
<updated>2023-08-12T15:34:15Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-05-03T10:07:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=78b54eb7f6a9956d25a3911fa0dfd0cabfe2a4c5'/>
<id>urn:sha1:78b54eb7f6a9956d25a3911fa0dfd0cabfe2a4c5</id>
<content type='text'>
Since 0.9, @lang syntax is still available as fallback but will soon be deprecated.
Because of that, new syntax should be adopted once 0.9 becomes the
baseline requirements for nvim-treesitter

- update health check
- update doc
</content>
</entry>
<entry>
<title>queries/*/highlights.scm : remove `@spell` for strings</title>
<updated>2023-08-07T15:39:40Z</updated>
<author>
<name>ShellCode33</name>
<email>shellcode33@proton.me</email>
</author>
<published>2023-08-07T13:20:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=d9e75a1736a960a104ff3086fc553a054f51835b'/>
<id>urn:sha1:d9e75a1736a960a104ff3086fc553a054f51835b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>lint(locals): use `#set!` to keep query linter happy</title>
<updated>2023-06-22T06:39:17Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-06-21T07:14:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=e58bbe83f959f6413e7a0faf7cdde6416c88b7af'/>
<id>urn:sha1:e58bbe83f959f6413e7a0faf7cdde6416c88b7af</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php_inject): add missing @combined to text</title>
<updated>2023-04-14T17:23:37Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-04-14T08:01:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=f7e8b7420ccf8bc61534ea6155db03d62c7ff571'/>
<id>urn:sha1:f7e8b7420ccf8bc61534ea6155db03d62c7ff571</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use indent.X syntax for captures and properties of set directives</title>
<updated>2023-03-24T17:07:53Z</updated>
<author>
<name>George Harker</name>
<email>george@george-graphics.co.uk</email>
</author>
<published>2023-03-20T21:44:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=cb568af5393241e5dbc9c19157c5df5e9ca9af2d'/>
<id>urn:sha1:cb568af5393241e5dbc9c19157c5df5e9ca9af2d</id>
<content type='text'>
update CONTRIBUTING.md

adjust indents for bass

fix doc capture comment
</content>
</entry>
<entry>
<title>highlights(php): use `lua-match?`</title>
<updated>2023-02-12T09:23:19Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-29T22:05:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4e26fec0747c4d507bbd068c9c5584eb2de6e839'/>
<id>urn:sha1:4e26fec0747c4d507bbd068c9c5584eb2de6e839</id>
<content type='text'>
Co-authored-by: Stephan Seitz &lt;stephan.seitz@fau.de&gt;
</content>
</entry>
<entry>
<title>highlights(php): remove typedef capture from `as`</title>
<updated>2023-02-12T09:23:19Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-26T12:22:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=0c6835ce5e2c826f958b89aa5d49a74303b4c10e'/>
<id>urn:sha1:0c6835ce5e2c826f958b89aa5d49a74303b4c10e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): fix `@constant` queries</title>
<updated>2023-02-12T09:23:19Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-26T12:22:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=620b94721855b6b802c64cc53edad4af3bf1553c'/>
<id>urn:sha1:620b94721855b6b802c64cc53edad4af3bf1553c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): fix queries related to namespaces</title>
<updated>2023-02-12T09:23:19Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-26T12:22:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=f83f05798a28df39a13b332fa83f70ec34130b0b'/>
<id>urn:sha1:f83f05798a28df39a13b332fa83f70ec34130b0b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): `instanceof` operand</title>
<updated>2023-01-28T10:32:57Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-28T08:13:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=cf21f81274966b41b51b4022283d1e09c79aec49'/>
<id>urn:sha1:cf21f81274966b41b51b4022283d1e09c79aec49</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use `@parameter` capture</title>
<updated>2023-01-28T00:45:54Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-25T04:49:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=a422d8508d73e9b1959edfbe94049e218d04e5f2'/>
<id>urn:sha1:a422d8508d73e9b1959edfbe94049e218d04e5f2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Apply the suggestion from @Lucario387</title>
<updated>2023-01-28T00:45:54Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-23T06:39:34Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=2ed316ccf47b1bc5a0693157e48a0282aedab051'/>
<id>urn:sha1:2ed316ccf47b1bc5a0693157e48a0282aedab051</id>
<content type='text'>
Co-authored-by: Lucario387 &lt;hoangtun0810@gmail.com&gt;</content>
</entry>
<entry>
<title>highlights(php): declare directives and `:`</title>
<updated>2023-01-28T00:45:54Z</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2023-01-23T04:09:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=fc596733ffbc534506a463b5f587fe678f9ecba2'/>
<id>urn:sha1:fc596733ffbc534506a463b5f587fe678f9ecba2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(php): improve indents for match and switch (#3953)</title>
<updated>2022-12-09T21:07:05Z</updated>
<author>
<name>gbprod</name>
<email>contact@gb-prod.fr</email>
</author>
<published>2022-12-09T21:07:05Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=fbc2ce9d652e5c2e1efc9bea50993d24d22236f7'/>
<id>urn:sha1:fbc2ce9d652e5c2e1efc9bea50993d24d22236f7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php): add missing php fold query</title>
<updated>2022-12-06T09:58:45Z</updated>
<author>
<name>gbprod</name>
<email>contact@gb-prod.fr</email>
</author>
<published>2022-12-06T09:56:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=56cabb6435cba2ccd931e37db7028325f8b464f9'/>
<id>urn:sha1:56cabb6435cba2ccd931e37db7028325f8b464f9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): use more specific groups</title>
<updated>2022-11-26T11:17:51Z</updated>
<author>
<name>ObserverOfTime</name>
<email>chronobserver@disroot.org</email>
</author>
<published>2022-11-04T20:39:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=0f866c15b4e77406c3eb4110e7ddbabce52ccaa1'/>
<id>urn:sha1:0f866c15b4e77406c3eb4110e7ddbabce52ccaa1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>improve php variables and $this highlights</title>
<updated>2022-11-25T17:22:25Z</updated>
<author>
<name>Nikita Sklyarov</name>
<email>nsweb.d@gmail.com</email>
</author>
<published>2022-10-28T13:20:40Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=795508b773c46e08b191346ef067345fb6e8ada6'/>
<id>urn:sha1:795508b773c46e08b191346ef067345fb6e8ada6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add regex injections for php (#3592)</title>
<updated>2022-10-28T12:22:16Z</updated>
<author>
<name>gbprod</name>
<email>contact@gb-prod.fr</email>
</author>
<published>2022-10-28T12:22:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=287ffdccc1dd7ed017d844a4fad069fd3340fa94'/>
<id>urn:sha1:287ffdccc1dd7ed017d844a4fad069fd3340fa94</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(php): add queries for bash injections</title>
<updated>2022-10-12T20:38:03Z</updated>
<author>
<name>gbprod</name>
<email>contact@gb-prod.fr</email>
</author>
<published>2022-10-06T14:29:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=82767f3f33c903e92f059dc9a2b27ec38dcc28d7'/>
<id>urn:sha1:82767f3f33c903e92f059dc9a2b27ec38dcc28d7</id>
<content type='text'>
This commit allows to inject bash syntax into relevant function arguments
and shell expression.
</content>
</entry>
<entry>
<title>feat(php): improve php folds</title>
<updated>2022-10-12T20:36:57Z</updated>
<author>
<name>gbprod</name>
<email>contact@gb-prod.fr</email>
</author>
<published>2022-10-11T07:23:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=3cb46f0c81a5640cd3b342e8a50e77058d7923d5'/>
<id>urn:sha1:3cb46f0c81a5640cd3b342e8a50e77058d7923d5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php): add indent for enums</title>
<updated>2022-10-10T21:01:22Z</updated>
<author>
<name>gbprod</name>
<email>contact@gb-prod.fr</email>
</author>
<published>2022-10-07T09:08:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=3096e637c8d78fd9e9078f752dce2da2cc6d531e'/>
<id>urn:sha1:3096e637c8d78fd9e9078f752dce2da2cc6d531e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix php indent for short array declaration</title>
<updated>2022-10-06T12:55:11Z</updated>
<author>
<name>gbprod</name>
<email>contact@gb-prod.fr</email>
</author>
<published>2022-10-06T07:17:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=84e23bd979ac17307e9cb5d93c6ec5b5a5bf1ba0'/>
<id>urn:sha1:84e23bd979ac17307e9cb5d93c6ec5b5a5bf1ba0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): add spell</title>
<updated>2022-09-26T22:23:21Z</updated>
<author>
<name>Laytan Laats</name>
<email>laytanlaats@hotmail.com</email>
</author>
<published>2022-09-20T11:12:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4303c1af69e4a8962c591b8dbf70229eed915313'/>
<id>urn:sha1:4303c1af69e4a8962c591b8dbf70229eed915313</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Split func/method definition from calls in several programming language queries</title>
<updated>2022-08-03T19:05:30Z</updated>
<author>
<name>lfenzo</name>
<email>lfenzo@protonmail.com</email>
</author>
<published>2022-07-30T00:09:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=c784720917bacb6716ce35ef07d464f5da738dd7'/>
<id>urn:sha1:c784720917bacb6716ce35ef07d464f5da738dd7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): highlight more string types and escapes (#3226)</title>
<updated>2022-07-27T07:48:01Z</updated>
<author>
<name>Matty Patatty</name>
<email>mattd@bugfuzz.com</email>
</author>
<published>2022-07-27T07:48:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=36ee4890c47a9de5789d6561b19ce36da8b766be'/>
<id>urn:sha1:36ee4890c47a9de5789d6561b19ce36da8b766be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): highlight readonly keyword</title>
<updated>2022-06-04T15:53:59Z</updated>
<author>
<name>shirasaka</name>
<email>shirasaka@n-create.co.jp</email>
</author>
<published>2022-06-01T09:20:48Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=e4df4228b7c07f98e55345b40ac0093d27d0d18c'/>
<id>urn:sha1:e4df4228b7c07f98e55345b40ac0093d27d0d18c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>indents(php): @auto on comment and ERROR</title>
<updated>2022-05-15T12:52:43Z</updated>
<author>
<name>przepompownia</name>
<email>przepompownia@users.noreply.github.com</email>
</author>
<published>2022-05-13T20:14:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=1cec3899f5b757fc46b4e5a8fbeea764df58c9f0'/>
<id>urn:sha1:1cec3899f5b757fc46b4e5a8fbeea764df58c9f0</id>
<content type='text'>
Currently with
```vim
setlocal autoindent
setlocal smartindent
```
in `after/indent/php.vim` it allows correct indentation
inside PHP docblocks.
</content>
</entry>
<entry>
<title>highlights(php): improve highlight for attributes</title>
<updated>2022-05-13T16:46:32Z</updated>
<author>
<name>nsfisis</name>
<email>nsfisis@gmail.com</email>
</author>
<published>2022-05-13T12:22:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4d53ee5c052db67928f4433b2c2a641b1eb4d3b5'/>
<id>urn:sha1:4d53ee5c052db67928f4433b2c2a641b1eb4d3b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): argument name as parameter</title>
<updated>2022-03-17T20:09:15Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2022-03-17T20:04:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=fd92e70c69330dd8f2f6753d3d987c34e7dacd24'/>
<id>urn:sha1:fd92e70c69330dd8f2f6753d3d987c34e7dacd24</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): add namespace aliasing name as type</title>
<updated>2022-02-26T15:05:22Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2022-02-19T17:36:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=689a078f916d024cb816178f55e81cf6fe7a6237'/>
<id>urn:sha1:689a078f916d024cb816178f55e81cf6fe7a6237</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): highlight use declaration name as type</title>
<updated>2022-02-19T19:00:31Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2022-02-19T17:44:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=6d44cc06f435cd42d71a4266f68166850a61bd99'/>
<id>urn:sha1:6d44cc06f435cd42d71a4266f68166850a61bd99</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): highlight traits names as type</title>
<updated>2022-02-19T17:26:05Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2022-02-19T17:20:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=c0783485e8bca0ada6fc2f65794f56ad8d1536eb'/>
<id>urn:sha1:c0783485e8bca0ada6fc2f65794f56ad8d1536eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>indents(php): don't use aligned_indent for php</title>
<updated>2022-02-13T11:19:54Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2022-02-12T22:12:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=3fbf280e349cfbac26fd6069f40c4d727ccd3c88'/>
<id>urn:sha1:3fbf280e349cfbac26fd6069f40c4d727ccd3c88</id>
<content type='text'>
Fixes #2497
</content>
</entry>
<entry>
<title>indents(php): add another test</title>
<updated>2022-02-05T17:54:55Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2022-01-24T20:16:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=992926ab99e1c6e929e3a1d2873daac8a193907e'/>
<id>urn:sha1:992926ab99e1c6e929e3a1d2873daac8a193907e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>indents(php): align with C indentation</title>
<updated>2022-01-24T21:33:41Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2022-01-24T19:39:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=ae4c982f94b3b780041b16d6b5df247a67102d92'/>
<id>urn:sha1:ae4c982f94b3b780041b16d6b5df247a67102d92</id>
<content type='text'>
Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/2357
</content>
</entry>
<entry>
<title>parsers: add phpdoc parser (experimental)</title>
<updated>2022-01-20T14:37:44Z</updated>
<author>
<name>Michael Härtl</name>
<email>haertl.mike@gmail.com</email>
</author>
<published>2022-01-17T11:20:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=d7c4ae886d90471b1839dd601887bdd6e882efd9'/>
<id>urn:sha1:d7c4ae886d90471b1839dd601887bdd6e882efd9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php) match magic and single letter constants</title>
<updated>2022-01-19T18:17:01Z</updated>
<author>
<name>Michael Härtl</name>
<email>haertl.mike@gmail.com</email>
</author>
<published>2022-01-19T16:41:42Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=983c46d55cb796fd623d43e3510bce7b21d0d1a6'/>
<id>urn:sha1:983c46d55cb796fd623d43e3510bce7b21d0d1a6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): detect constructor calls on instantiation</title>
<updated>2022-01-17T20:38:40Z</updated>
<author>
<name>Michael Härtl</name>
<email>haertl.mike@gmail.com</email>
</author>
<published>2022-01-17T20:09:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=723d91e8217ae66ea75f809f404d801ed939f497'/>
<id>urn:sha1:723d91e8217ae66ea75f809f404d801ed939f497</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(php): change query for @constructor group</title>
<updated>2022-01-16T11:02:24Z</updated>
<author>
<name>Infectos</name>
<email>infectos@yandex.ru</email>
</author>
<published>2022-01-14T12:28:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=1da55c27ccb476194599f46d2ef832c73944d334'/>
<id>urn:sha1:1da55c27ccb476194599f46d2ef832c73944d334</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): fix and add missing highlights</title>
<updated>2022-01-15T11:32:03Z</updated>
<author>
<name>Michael Härtl</name>
<email>haertl.mike@gmail.com</email>
</author>
<published>2022-01-14T20:37:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=749f72d3515bf9b53ee55f8aa7bc06151b2ee753'/>
<id>urn:sha1:749f72d3515bf9b53ee55f8aa7bc06151b2ee753</id>
<content type='text'>
</content>
</entry>
<entry>
<title>PHP: highlight unset</title>
<updated>2021-12-23T20:02:51Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2021-12-23T16:25:48Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=9025d961590cffd02ff0ce526546c6a820d14f39'/>
<id>urn:sha1:9025d961590cffd02ff0ce526546c6a820d14f39</id>
<content type='text'>
Similar to https://github.com/tree-sitter/tree-sitter-php/blob/57f855461aeeca73bd4218754fb26b5ac143f98f/grammar.js#L130-L132

Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/2156
</content>
</entry>
<entry>
<title>Prefer lua-match over match</title>
<updated>2021-11-23T09:02:06Z</updated>
<author>
<name>Lewis Russell</name>
<email>lewis6991@gmail.com</email>
</author>
<published>2021-11-18T09:51:03Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=011ac894ec5b9e36563d8629fb7734f43ddb27a8'/>
<id>urn:sha1:011ac894ec5b9e36563d8629fb7734f43ddb27a8</id>
<content type='text'>
as string.find is much quicker than vim.regex:match*
</content>
</entry>
<entry>
<title>Fix method access using php nullsafe operator (#1773)</title>
<updated>2021-08-31T03:06:09Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2021-08-31T03:06:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=6cd6a292139b5bc614ce101fcfcfec48ae8f020a'/>
<id>urn:sha1:6cd6a292139b5bc614ce101fcfcfec48ae8f020a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(php): add missings operators `?-&gt;` and `=&gt;`  (#1729)</title>
<updated>2021-08-26T17:15:09Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2021-08-26T17:15:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=1e4c846d01561821a737d08a6a5e2ac16d19c332'/>
<id>urn:sha1:1e4c846d01561821a737d08a6a5e2ac16d19c332</id>
<content type='text'>
This will:

- add nullsafe `?-&gt;` as `@operator`
- add separator for associative arrays `=&gt;` as `@operator`</content>
</entry>
<entry>
<title>highlights(php): add `instanceof` as `@keyword` (#1728)</title>
<updated>2021-08-21T05:05:01Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2021-08-21T05:05:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=af96150a2d34a05b7265ee3c42425315bcd62e39'/>
<id>urn:sha1:af96150a2d34a05b7265ee3c42425315bcd62e39</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(keywords) merge return and yield into keyword.return group</title>
<updated>2021-07-04T19:49:17Z</updated>
<author>
<name>antonk52</name>
<email>halloy52@gmail.com</email>
</author>
<published>2021-07-04T17:24:25Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=90f15d9bf750e35666e029174481dafbe5fde817'/>
<id>urn:sha1:90f15d9bf750e35666e029174481dafbe5fde817</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(keywords) add keyword.return &amp; keyword.yield</title>
<updated>2021-07-04T19:49:17Z</updated>
<author>
<name>antonk52</name>
<email>halloy52@gmail.com</email>
</author>
<published>2021-07-04T16:55:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=bd9095e96986fbb65829a3dbc598f9b35d9b7db2'/>
<id>urn:sha1:bd9095e96986fbb65829a3dbc598f9b35d9b7db2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add support for `match` expression in PHP (#1482)</title>
<updated>2021-07-04T17:52:29Z</updated>
<author>
<name>Wilman Barrios</name>
<email>wilmanbarrios@gmail.com</email>
</author>
<published>2021-07-04T17:52:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=486c86f1cdad33208f9aec9f95baf1397c6a0abc'/>
<id>urn:sha1:486c86f1cdad33208f9aec9f95baf1397c6a0abc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Adds support for PHP's arrow funcion (#1427)</title>
<updated>2021-06-28T15:10:58Z</updated>
<author>
<name>tk-shirasaka</name>
<email>tk.shirasaka@gmail.com</email>
</author>
<published>2021-06-28T15:10:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=fe47dbe02bc243315ee185e9dc9c68b4e9dc70b2'/>
<id>urn:sha1:fe47dbe02bc243315ee185e9dc9c68b4e9dc70b2</id>
<content type='text'>
Co-authored-by: shirasaka &lt;shirasaka@n-create.co.jp&gt;</content>
</entry>
<entry>
<title>fix(php): highlights function call expression</title>
<updated>2021-05-19T17:41:21Z</updated>
<author>
<name>elianiva</name>
<email>dicha.arkana03@gmail.com</email>
</author>
<published>2021-05-19T03:45:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=88bd7f5cb3e7c0121dbf1c8a6775edf43cba96f4'/>
<id>urn:sha1:88bd7f5cb3e7c0121dbf1c8a6775edf43cba96f4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update queries/php/highlights.scm</title>
<updated>2021-05-17T11:27:58Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2021-05-17T05:06:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4dcc3fb4b38d4a29d175fda69a0bf35b2aa675c5'/>
<id>urn:sha1:4dcc3fb4b38d4a29d175fda69a0bf35b2aa675c5</id>
<content type='text'>
Co-authored-by: Santos Gallegos &lt;stsewd@protonmail.com&gt;</content>
</entry>
<entry>
<title>highlights/locals(php): rename type_name -&gt; named_type</title>
<updated>2021-05-17T11:27:58Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2021-05-16T21:17:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=fe8264e3f65c9a20847f10f4c115f9ed63ad711f'/>
<id>urn:sha1:fe8264e3f65c9a20847f10f4c115f9ed63ad711f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Comment: use `@combined` to create just one tree per buffer (#1252)"</title>
<updated>2021-05-07T14:51:57Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2021-04-30T18:22:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=67f08570152792c6a4f0815e71a0093ad97f2725'/>
<id>urn:sha1:67f08570152792c6a4f0815e71a0093ad97f2725</id>
<content type='text'>
This reverts commit 4a7a713c527f57c355bc817f16fc6d955b8cce9b.
</content>
</entry>
<entry>
<title>Comment: use `@combined` to create just one tree per buffer (#1252)</title>
<updated>2021-04-28T12:19:07Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2021-04-28T12:19:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4a7a713c527f57c355bc817f16fc6d955b8cce9b'/>
<id>urn:sha1:4a7a713c527f57c355bc817f16fc6d955b8cce9b</id>
<content type='text'>
* Comment: use `@combined` to create just one tree per buffer

There is no need to create a tree per line/block for comments.
Should fix https://github.com/nvim-treesitter/nvim-treesitter/issues/1251

* Add injections for scss

* Fix jsonc

* Combine jsdoc</content>
</entry>
<entry>
<title>Add indents for php</title>
<updated>2021-03-22T17:02:10Z</updated>
<author>
<name>shirasaka</name>
<email>shirasaka@n-create.co.jp</email>
</author>
<published>2021-03-19T02:16:02Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=71e3391a8cbd9152fd517da4189db9ceb7a9dfd8'/>
<id>urn:sha1:71e3391a8cbd9152fd517da4189db9ceb7a9dfd8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Mark several invalid queries</title>
<updated>2021-03-16T17:52:43Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2021-03-07T18:10:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=6cd211f647ff37f1b40f1ed3d93e0ca53b7e86b1'/>
<id>urn:sha1:6cd211f647ff37f1b40f1ed3d93e0ca53b7e86b1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add comment parser to highlight comment tags (#893)</title>
<updated>2021-03-12T16:21:46Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2021-03-12T16:21:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=e4083fc8e11e6585f53d62eb71778cc2af464fad'/>
<id>urn:sha1:e4083fc8e11e6585f53d62eb71778cc2af464fad</id>
<content type='text'>
Closes #236</content>
</entry>
<entry>
<title>Add injections to PHP</title>
<updated>2020-11-24T07:03:16Z</updated>
<author>
<name>shirasaka</name>
<email>shirasaka@n-create.co.jp</email>
</author>
<published>2020-11-24T01:24:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=1b7cfc1b71027ef3c7efc33a15869fc13c753d9f'/>
<id>urn:sha1:1b7cfc1b71027ef3c7efc33a15869fc13c753d9f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix #307: Use and document TSVariable/TSVariableBuiltin in all languages</title>
<updated>2020-09-14T16:27:20Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2020-09-12T18:57:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=bcf421b4e7f164dfc8aca8a94949adda2bdda10f'/>
<id>urn:sha1:bcf421b4e7f164dfc8aca8a94949adda2bdda10f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Folds: rename query files to folds.scm to be consistent</title>
<updated>2020-09-14T16:26:30Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2020-09-13T16:23:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=50991e370b0d253ada9029000d23189a95f9dec3'/>
<id>urn:sha1:50991e370b0d253ada9029000d23189a95f9dec3</id>
<content type='text'>
We use plural names for all query files except folds.
</content>
</entry>
<entry>
<title>Update PHP query</title>
<updated>2020-09-12T11:15:48Z</updated>
<author>
<name>Shirasaka</name>
<email>tk.shirasaka@gmail.com</email>
</author>
<published>2020-09-12T09:55:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=8be4fb059e8c7997cb3c06b8464caa1b11057469'/>
<id>urn:sha1:8be4fb059e8c7997cb3c06b8464caa1b11057469</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ci: fix wrong queries</title>
<updated>2020-09-11T10:02:35Z</updated>
<author>
<name>Thomas Vigouroux</name>
<email>tomvig38@gmail.com</email>
</author>
<published>2020-09-07T16:14:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=b90e520ccdbb9d88fb4f7e7a7eea73de196c856c'/>
<id>urn:sha1:b90e520ccdbb9d88fb4f7e7a7eea73de196c856c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(queries): use vim-match for non lua regexes</title>
<updated>2020-08-16T16:31:56Z</updated>
<author>
<name>Steven Sojka</name>
<email>steelsojka@gmail.com</email>
</author>
<published>2020-08-16T16:24:10Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=ce43dbf54cdc017e6885381f38ea056f78c4e55b'/>
<id>urn:sha1:ce43dbf54cdc017e6885381f38ea056f78c4e55b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>PHP: Update locals query</title>
<updated>2020-08-05T19:28:50Z</updated>
<author>
<name>Shirasaka</name>
<email>tk.shirasaka@gmail.com</email>
</author>
<published>2020-08-05T05:48:42Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=dccc250add3ead4298817bfce2f69682e1d1c0ff'/>
<id>urn:sha1:dccc250add3ead4298817bfce2f69682e1d1c0ff</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add PHP, TOML, and update HTML, javascript queries</title>
<updated>2020-08-04T06:05:51Z</updated>
<author>
<name>Shirasaka</name>
<email>tk.shirasaka@gmail.com</email>
</author>
<published>2020-07-31T14:59:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=f372e2ab87fc9c6d13cd16b69d7ef08479e7b963'/>
<id>urn:sha1:f372e2ab87fc9c6d13cd16b69d7ef08479e7b963</id>
<content type='text'>
- PHP         : Add highlights and locals query
- TOML        : Add highlights and locals query
- HTML        : Add scope
- javascript  : Add some scopes
</content>
</entry>
</feed>
