yujinyuz / gitpad.nvim

minimal neovim plugin for taking down notes for git projects, branch, etc.
https://yujinyuz.github.io/gitpad.nvim/
MIT License
43 stars 4 forks source link

fix: do not list gitpad in the buflist #8

Closed yujinyuz closed 1 month ago

yujinyuz commented 1 month ago

It seems that vim.cmd.edit creates a new buffer and it causes it to get displayed in the buflist even though we did a set nobuflisted

:bufadd will create a new buffer for us so let's just use this

Closes #7