Skip to content

Commit

Permalink
Add key map for telescope buffer delete
Browse files Browse the repository at this point in the history
Covers all my bufexplorer use cases at this point
Pending nvim-telescope/telescope.nvim#2643
  • Loading branch information
dkao committed Oct 23, 2023
1 parent aa329df commit b70b5b2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions vim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,15 @@ let g:terminal_color_15 = '#e6e6e6'

lua << EOF
require('telescope').setup{
pickers = {
buffers = {
mappings = {
i = {
["<c-d>"] = "delete_buffer",
}
}
}
}
}
require('cscope_maps').setup{
skip_input_prompt = true,
Expand Down

0 comments on commit b70b5b2

Please sign in to comment.