Skip to content

Commit

Permalink
Merge pull request #198 from mbromell/patch-1
Browse files Browse the repository at this point in the history
fix: error message when using nvim-treesitter 'main' branch
  • Loading branch information
PriceHiller authored Jun 21, 2024
2 parents 06fe07d + 30aea00 commit ddfccbf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lua/nvim-ts-autotag.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ function M.init()
if not nvim_ts then
return
end
if nvim_ts.define_modules == nil then
return
end
nvim_ts.define_modules({
autotag = {
attach = function(bufnr, _)
Expand Down

0 comments on commit ddfccbf

Please sign in to comment.