Show the list of buffers by user specified parameter, e.g. filename
I just installed the plugin and see that the window has at least 4 fields: Filename, FullPath, Buffer Id, etc
Is there a way to show the list of buffers with user set parameters only. For example, I would like to open the list with only bufferId and fileName. If this can already be done could you please specify how to encode that preference in the vimrc file.
Regards, Ramesh
Hello. At this time there is no way to provide that... However, your suggestion is an interesting thought for future development...
I would find this useful too, as I only use BufExplorer to switch between files.
Just being able to see the path - filename and directory - would be a cleaner user experience for this scenario. I mentally ignore the other columns - to the point where I've forgotten what the values mean.
One advantage: more horizontal space for long filenames / directories - especially for vsplit usage.
Coincidentally, I've been looking at this issue to work on next. I believe I see how to allow for end-user customization of the columns.
BufExplorer 7.12.0 (released 2025-04-11) now has support for configurable columns via the g:bufExplorerColumns variable. For example, to show only the buffer's number and path, add the below to your vimrc:
let g:bufExplorerColumns = ['number', 'splittablepath']
Or to show only the buffer's path, add the below to your vimrc:
let g:bufExplorerColumns = ['splittablepath']
See :help g:bufExplorerColumns to read more details in BufExplorer's help.
Just tried this out: can confirm it works ✅.
Thanks for taking the time to make this happen 🌟.