Skip to content

Commit

Permalink
refactor(extmarks): use PascalCase for namespace id
Browse files Browse the repository at this point in the history
  • Loading branch information
willothy committed Sep 27, 2023
1 parent 98af046 commit d0f7d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/dropbar/menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ function dropbar_menu_t:fill_buf()
vim.api.nvim_buf_set_lines(self.buf, 0, -1, false, lines)
self:add_hl(hl_info)

local extmark_ns = vim.api.nvim_create_namespace('dropbar_extmarks')
local extmark_ns = vim.api.nvim_create_namespace('DropBarExtmarks')
vim.api.nvim_buf_clear_namespace(self.buf, extmark_ns, 0, -1)

for i, virt_text in pairs(extmarks) do
Expand Down

0 comments on commit d0f7d30

Please sign in to comment.