Skip to content

Commit

Permalink
fix(core.highlights): wrongly placed bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed May 30, 2023
1 parent 9db5645 commit 1886d36
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lua/neorg/modules/core/highlights/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -545,10 +545,8 @@ module.public = {
if not query.has_highlights("norg") then
query.invalidate_query_cache()
assert(
query.has_highlights(
"norg",
"nvim-treesitter has no available highlights for norg! Ensure treesitter is properly loaded in your config."
)
query.has_highlights("norg"),
"nvim-treesitter has no available highlights for norg! Ensure treesitter is properly loaded in your config."
)
if vim.bo.filetype == "norg" then
Expand Down

0 comments on commit 1886d36

Please sign in to comment.