Skip to content

Commit

Permalink
Merge pull request #207 from captainko/master
Browse files Browse the repository at this point in the history
fix(treesitter-matchup): Fixes #206
  • Loading branch information
andymass authored Jan 27, 2022
2 parents f129003 + 91c9530 commit 07196cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/treesitter-matchup/internal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ end
function M.get_matching(delim, down, bufnr)
down = down > 0

local info = cache:get(delim._id)
local info = cache:get(delim._id) or {}
if info.bufnr ~= bufnr then
return {}
end
Expand Down

0 comments on commit 07196cf

Please sign in to comment.