-
Contributing guidelines
Module(s)mini.tabline Question
|
Beta Was this translation helpful? Give feedback.
Answered by
krovuxdev
Jan 16, 2025
Replies: 1 comment 6 replies
-
You can try the following solution. It ensures that empty and unnamed buffers (like the ones created by vim.api.nvim_create_autocmd({ "BufAdd", "BufEnter" }, {
callback = function(args)
if vim.bo[args.buf].buftype == "" and vim.api.nvim_buf_get_name(args.buf) == "" then
vim.bo[args.buf].buflisted = false
end
end,
}) |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@bnhtho You can find the information here: Dependencies Section.
Alternatively, you can search for it directly in Neovim using:
:help mini.completion
Then look for the "Dependencies" or "Notes" section within the help file.