mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-04 02:38:46 +00:00
feat(picker.buffers): del buffer with ctrl+x
This commit is contained in:
parent
743f8b3fee
commit
2479ff7cf4
1 changed files with 6 additions and 1 deletions
|
@ -26,7 +26,12 @@ M.buffers = {
|
|||
current = true,
|
||||
sort_lastused = true,
|
||||
win = {
|
||||
input = { keys = { ["dd"] = "bufdelete" } },
|
||||
input = {
|
||||
keys = {
|
||||
["dd"] = "bufdelete",
|
||||
["<c-x>"] = { "bufdelete", mode = { "n", "i" } },
|
||||
},
|
||||
},
|
||||
list = { keys = { ["dd"] = "bufdelete" } },
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue