aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/cpp/test.cpp
diff options
context:
space:
mode:
authorAaron Rancsik <20153302+aaronrancsik@users.noreply.github.com>2022-11-28 00:45:50 +0100
committerStephan Seitz <stephan.seitz@fau.de>2022-12-01 15:08:07 +0100
commit45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae (patch)
treea7d4e77daf13d1cc33798f0d33dedd421fc409fb /tests/query/highlights/cpp/test.cpp
parenthighlights(cpp): auto as @type.builtin (diff)
downloadnvim-treesitter-45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae.tar
nvim-treesitter-45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae.tar.gz
nvim-treesitter-45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae.tar.bz2
nvim-treesitter-45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae.tar.lz
nvim-treesitter-45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae.tar.xz
nvim-treesitter-45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae.tar.zst
nvim-treesitter-45bb230dc0ae56b60405d4b9db3f7dcf2d2aefae.zip
test(highlights/cpp): type -> type.builtin for primitive types.
Diffstat (limited to 'tests/query/highlights/cpp/test.cpp')
-rw-r--r--tests/query/highlights/cpp/test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/query/highlights/cpp/test.cpp b/tests/query/highlights/cpp/test.cpp
index 4dd138e7e..68c51d592 100644
--- a/tests/query/highlights/cpp/test.cpp
+++ b/tests/query/highlights/cpp/test.cpp
@@ -5,8 +5,8 @@
auto main( int argc, char** argv ) -> int
// ^ parameter
- // ^ type
- // ^ type
+ // ^ type.builtin
+ // ^ type.builtin
// ^ operator
{
std::cout << "Hello world!" << std::endl;