From 04ffc88e9a5ac9f77538bd77ef96dda1175e125a Mon Sep 17 00:00:00 2001 From: Steven Proctor Date: Sat, 31 Dec 2022 13:07:42 -0600 Subject: [PATCH] Neovim - Support buffer delete in Telescope --- nvim/.config/nvim/fnl/dotfiles/plugin/telescope.fnl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nvim/.config/nvim/fnl/dotfiles/plugin/telescope.fnl b/nvim/.config/nvim/fnl/dotfiles/plugin/telescope.fnl index 2e390f8..0bce118 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugin/telescope.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugin/telescope.fnl @@ -9,7 +9,9 @@ "--number" "--column" "--nobreak" "--smart-case" "--hidden" "--follow" ; "--skip-vcs-ignores" ; "-g" "!.git/" - ]}}) + ]} + :pickers + {:buffers {:mappings {:n {:d :delete_buffer}}}}}) (util.lnnoremap :ff "Telescope git_files hidden=true")