mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2026-08-09 15:46:46 +00:00
This action is not mapped but you can do it yourself in your telescope setup call
Example config:
```lua
require("telescope").setup {
pickers = {
buffers = {
mappings = {
i = {
["<c-d>"] = "delete_buffer",
}
}
}
}
}
```