Skip to content

Commit

Permalink
chore: appease luacheck
Browse files Browse the repository at this point in the history
  • Loading branch information
levouh committed Aug 28, 2023
1 parent 3f7a964 commit 5bd10f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/tint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ local function set_window_hl_ns(winid, hl_ns_id)
return
end

vim.w[winid].tint_hl_ns_id = hl_ns_id
vim.api.nvim_win_set_var(winid, "tint_hl_ns_id", hl_ns_id)
vim.api.nvim_win_set_hl_ns(winid, hl_ns_id)
end

Expand Down Expand Up @@ -605,4 +605,4 @@ tint.untint = function(winid)
set_window_hl_ns(winid, __.default_ns)
end

return tint
return tint

0 comments on commit 5bd10f7

Please sign in to comment.