Can I close buffers from the buffer list? #1512
Answered
by
Conni2461
despairblue
asked this question in
Q&A
-
|
This would be a nice UX to clean open buffers when using |
Beta Was this translation helpful? Give feedback.
Answered by
Conni2461
Nov 29, 2021
Replies: 1 comment 1 reply
-
|
We have a action for that that isnt mapped. This will map it to local actions = require("telescope.actions")
require('telescope').setup{
pickers = {
buffers = {
mappings = {
i = {
["<c-d>"] = actions.delete_buffer
},
}
},
},
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
despairblue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

We have a action for that that isnt mapped. This will map it to
<c-d>