Files
telescope.nvim/lua/telescope
Dhruv Manilawala 495f84fd35 feat: delete entry from the picker without closing telescope (#828)
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",
        }
      }
    }
  }
}
```
2021-06-09 19:58:36 +02:00
..
2020-12-13 11:49:14 +01:00
2021-01-11 13:29:37 -05:00
2020-10-27 23:33:49 -04:00
2020-12-09 15:46:41 -05:00
2020-12-09 15:46:41 -05:00
2021-02-22 11:30:57 -05:00