sidebar.nvim
sidebar.nvim copied to clipboard
|buffers} sort by name is wrong
Describe the bug
When setting the buffers builtin section to sort buffers by name, buffers are not correctly alphabetically sorted.
hi @gbcreation can you provide an example? maybe a screenshot? Also can you share your sidebar configuration?
Hi @GustavoKatel , here is a screenshot of an example:

and my sidebar configuration:
require('packer').use({
'sidebar-nvim/sidebar.nvim',
disable = false,
config = function()
require("sidebar-nvim").setup({
open = true,
hide_statusline = true,
initial_width = 35,
sections = { 'buffers', 'todos', 'git', 'files' },
-- Configuration of the Buffers section
buffers = {
ignored_buffers = { 'sh', '.*SKIM', 'zsh' },
show_numbers = false,
sorting = 'name',
},
})
end,
})
hi @gbcreation I'm trying to reproduce your issue, but without much success. Are you using the latest code?
