diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-09-25 08:37:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-25 08:37:05 -0400 |
commit | 4686bda06c9f3b7b309cfdc3782effdd465b4010 (patch) | |
tree | a661e738a9d53432878353e4eb9609444e8b1f05 /test | |
parent | 2a5692c64628ee0af3ef4931a774a2eb0a7e046f (diff) | |
parent | 1b60b5ec94001f18b70dbebf6c232c33209f11b5 (diff) | |
download | rneovim-4686bda06c9f3b7b309cfdc3782effdd465b4010.tar.gz rneovim-4686bda06c9f3b7b309cfdc3782effdd465b4010.tar.bz2 rneovim-4686bda06c9f3b7b309cfdc3782effdd465b4010.zip |
Merge #20331 refactor(treesitter)!: rename x_position => x_pos
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/treesitter/highlight_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/treesitter/highlight_spec.lua b/test/functional/treesitter/highlight_spec.lua index 1684337c3c..ae3f42ff0a 100644 --- a/test/functional/treesitter/highlight_spec.lua +++ b/test/functional/treesitter/highlight_spec.lua @@ -607,7 +607,7 @@ describe('treesitter highlighting', function() eq({ {capture='Error', metadata = { priority='101' }}; {capture='type', metadata = { } }; - }, exec_lua [[ return vim.treesitter.get_captures_at_position(0, 0, 2) ]]) + }, exec_lua [[ return vim.treesitter.get_captures_at_pos(0, 0, 2) ]]) end) it("allows to use captures with dots (don't use fallback when specialization of foo exists)", function() |