add binding for clearing buffers
All checks were successful
Build neovim image / build-neovim-amd64 (push) Successful in 8m18s
Build neovim image / build-neovim-arm64 (push) Successful in 10m48s
Build neovim image / update-images-manifest (push) Successful in 14s

This commit is contained in:
Szwendacz 2024-04-24 16:27:29 +02:00 committed by Maciej Lebiest
parent de7207c481
commit dbadd5d967
2 changed files with 3 additions and 0 deletions

View file

@ -252,6 +252,7 @@ All that is saved in image, so that is why image is so heavy.
|keys|action|
|----|----|
|\<leader\>l|disable (search) highlighting|
|\<leader\>cb|Close all buffers (:bufdo bd)|
#### DAP - Debug Adapter Protocol

View file

@ -41,6 +41,8 @@ map("n", "<leader>gb", ":Telescope git_branches<CR>")
map("n", "<leader>ng", ":Neogit<CR>")
map("n", "<leader>cb", ":bufdo bd<CR>")
-- dap
map("n", "<leader>db", ":lua require'dap'.toggle_breakpoint()<CR>")
map("n", "<leader>dc", ":lua require'dap'.continue()<CR>")