diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2026-04-15 19:03:17 +0200 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2026-07-18 22:23:55 +0200 |
| commit | 0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c (patch) | |
| tree | 7abd717ebc303021b139b6b7f1a3040fe66b9293 | |
| parent | feat(enforce)!: update parser and queries (diff) | |
| download | nvim-treesitter-0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c.tar nvim-treesitter-0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c.tar.gz nvim-treesitter-0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c.tar.bz2 nvim-treesitter-0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c.tar.lz nvim-treesitter-0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c.tar.xz nvim-treesitter-0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c.tar.zst nvim-treesitter-0f2324ac88f4b97c32a7c0fa84fd06a2ff33680c.zip | |
feat(razor)!: update parser and queries
Breaking change: `(at_await)` node removed
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 2 | ||||
| -rw-r--r-- | runtime/queries/razor/highlights.scm | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 28965ee30..be912395e 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1849,7 +1849,7 @@ return { }, razor = { install_info = { - revision = 'fe46ce5ea7d844e53d59bc96f2175d33691c61c5', + revision = '1e8ec29b7179329ce7cffcfae2c5347e8a00f7cf', url = 'https://github.com/tris203/tree-sitter-razor', }, maintainers = { '@tris203' }, diff --git a/runtime/queries/razor/highlights.scm b/runtime/queries/razor/highlights.scm index 2050bde9c..14c5113cf 100644 --- a/runtime/queries/razor/highlights.scm +++ b/runtime/queries/razor/highlights.scm @@ -51,7 +51,10 @@ "at_explicit" ] @variable -"at_await" @keyword.coroutine +(razor_implicit_expression + "at_implicit" @keyword.coroutine + (await_expression + "await" @keyword.coroutine)) (razor_rendermode) @property |
