Skip to content

Commit

Permalink
fix(autocmd): add missing setup event BufNewFile (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofseed committed Feb 15, 2024
1 parent a920a73 commit fa43ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/dropbar.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vim.api.nvim_create_autocmd({ 'BufReadPost', 'BufWritePost' }, {
vim.api.nvim_create_autocmd({ 'BufReadPost', 'BufNewFile', 'BufWritePost' }, {
once = true,
group = vim.api.nvim_create_augroup('DropBarSetup', {}),
callback = function()
Expand Down

0 comments on commit fa43ea3

Please sign in to comment.