<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvim-treesitter/queries/inko/highlights.scm, branch master</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/nvim-treesitter/atom/queries/inko/highlights.scm?h=master</id>
<link rel='self' href='http://git.sudomsg.com/mirror/nvim-treesitter/atom/queries/inko/highlights.scm?h=master'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/'/>
<updated>2025-02-21T20:37:27Z</updated>
<entry>
<title>feat(inko): add support for "for" loops</title>
<updated>2025-02-21T20:37:27Z</updated>
<author>
<name>Yorick Peterse</name>
<email>yorick@yorickpeterse.com</email>
</author>
<published>2025-02-21T20:21:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=d0ba96c3dc5b8c040412ee366cf7c596ae430416'/>
<id>urn:sha1:d0ba96c3dc5b8c040412ee366cf7c596ae430416</id>
<content type='text'>
These will be introduced as part of the 0.19.0 release. This commit
updates the lockfile as well as the relevant queries to accommodate the
new expression and "in" now being a keyword.
</content>
</entry>
<entry>
<title>feat(inko)!: remove the "class" keyword (#7663)</title>
<updated>2025-02-17T22:54:32Z</updated>
<author>
<name>Yorick Peterse</name>
<email>yorick@yorickpeterse.com</email>
</author>
<published>2025-02-17T22:54:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=95648f915424131ba0304989bfd618dce651e1cf'/>
<id>urn:sha1:95648f915424131ba0304989bfd618dce651e1cf</id>
<content type='text'>
This keyword is deprecated as of 0.18.1 (released on February 12, 2025)
and is being removed as part of the upcoming 0.19.0 release.

BREAKING CHANGE: replace with `type`.</content>
</entry>
<entry>
<title>feat(inko): highlight the "type" keyword</title>
<updated>2024-12-24T16:37:57Z</updated>
<author>
<name>Yorick Peterse</name>
<email>yorick@yorickpeterse.com</email>
</author>
<published>2024-12-24T16:02:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=096babebf6daef2a046650883082ed2b3dcc5b67'/>
<id>urn:sha1:096babebf6daef2a046650883082ed2b3dcc5b67</id>
<content type='text'>
This keyword will be released in 0.18.0 and deprecate the "class"
keyword, which in turn will be removed in 0.19.0.
</content>
</entry>
<entry>
<title>feat(inko): highlight the "copy" keyword</title>
<updated>2024-12-04T14:39:04Z</updated>
<author>
<name>Yorick Peterse</name>
<email>yorick@yorickpeterse.com</email>
</author>
<published>2024-12-03T16:39:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=0aaf146590f3edd1dfa64fbfa2ad1cdca65afa6f'/>
<id>urn:sha1:0aaf146590f3edd1dfa64fbfa2ad1cdca65afa6f</id>
<content type='text'>
This keyword is added as part of the upcoming 0.18.0 release.
</content>
</entry>
<entry>
<title>feat(inko): highlight "inline" keyword</title>
<updated>2024-11-28T16:52:02Z</updated>
<author>
<name>Yorick Peterse</name>
<email>yorick@yorickpeterse.com</email>
</author>
<published>2024-11-28T16:40:28Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4d035005d338e4b1eb71a175bd44974e2f64740f'/>
<id>urn:sha1:4d035005d338e4b1eb71a175bd44974e2f64740f</id>
<content type='text'>
The parser added support for the "inline" keyword in a few places. This
ensures a highlight is present for the keyword.
</content>
</entry>
<entry>
<title>fix(inko): add highlight for boolean patterns (#7050)</title>
<updated>2024-08-17T21:04:32Z</updated>
<author>
<name>Yorick Peterse</name>
<email>yorick@yorickpeterse.com</email>
</author>
<published>2024-08-17T21:04:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=6d74da7f0a29c35ee7636e157e72dd221e8d6197'/>
<id>urn:sha1:6d74da7f0a29c35ee7636e157e72dd221e8d6197</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(inko): highlighting of numeric call names (#6566)</title>
<updated>2024-05-03T20:06:54Z</updated>
<author>
<name>Yorick Peterse</name>
<email>git@yorickpeterse.com</email>
</author>
<published>2024-05-03T20:06:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4ae2b452e9bd67ff618e3bb0e3488e49c98465e9'/>
<id>urn:sha1:4ae2b452e9bd67ff618e3bb0e3488e49c98465e9</id>
<content type='text'>
Inko allows for syntax such as `some_value.42.to_string`, where `42` is
a method name. Similar to other languages that allow this (e.g. Rust),
these numeric names should be highlighted as numbers instead of
identifiers.

To fix this, the query to highlight call names is adjusted to only
highlight "name" and "constant" nodes as the function group, ensuring
the remaining possible node ("integer") continues to use the same group
as regular numbers.</content>
</entry>
<entry>
<title>feat(inko): add support for Inko</title>
<updated>2024-05-03T09:32:15Z</updated>
<author>
<name>Yorick Peterse</name>
<email>git@yorickpeterse.com</email>
</author>
<published>2024-05-02T23:13:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=7441b82fe558306b37c979a91c6c21d6bfae9a3c'/>
<id>urn:sha1:7441b82fe558306b37c979a91c6c21d6bfae9a3c</id>
<content type='text'>
</content>
</entry>
</feed>
