diff --git a/README.md b/README.md index 2b01c33..c446e80 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ All that is saved in image, so that is why image is so heavy. |keys|action| |----|----| |\l|disable (search) highlighting| +|\cb|Close all buffers (:bufdo bd)| #### DAP - Debug Adapter Protocol diff --git a/lua/general.lua b/lua/general.lua index 87951fe..2ca6b7d 100644 --- a/lua/general.lua +++ b/lua/general.lua @@ -41,6 +41,8 @@ map("n", "gb", ":Telescope git_branches") map("n", "ng", ":Neogit") +map("n", "cb", ":bufdo bd") + -- dap map("n", "db", ":lua require'dap'.toggle_breakpoint()") map("n", "dc", ":lua require'dap'.continue()")