fix(bufferline): don't force remove buffers

This commit is contained in:
Folke Lemaitre 2023-04-24 08:40:23 +02:00
parent 8d6d6fddde
commit 728d524d21
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -60,9 +60,9 @@ return {
opts = { opts = {
options = { options = {
-- stylua: ignore -- stylua: ignore
close_command = function(n) require("mini.bufremove").delete(n, true) end, close_command = function(n) require("mini.bufremove").delete(n, false) end,
-- stylua: ignore -- stylua: ignore
right_mouse_command = function(n) require("mini.bufremove").delete(n, true) end, right_mouse_command = function(n) require("mini.bufremove").delete(n, false) end,
diagnostics = "nvim_lsp", diagnostics = "nvim_lsp",
always_show_bufferline = false, always_show_bufferline = false,
diagnostics_indicator = function(_, _, diag) diagnostics_indicator = function(_, _, diag)