vim: remove keymap for listing and switching buffers

This functionality has been replaced with `<leader>fb`, which used
Telescope to fuzzy find open buffers. This is much better because the
list of buffers is more readable and Telescope supports live preview of
the contents before switching.
This commit is contained in:
Fernando Schauenburg 2022-07-18 17:44:14 +02:00
parent 55f73c2ef5
commit f9b463b408

View file

@ -51,9 +51,6 @@ nmap { '<leader>lr', '<cmd>set number relativenumber<CR>' , { silent = true
-- show/hide listchars
nmap { '<leader>sl', '<cmd>set list!<CR>', { silent = true } }
-- show list of buffers and prepare to switch
nmap { '<leader>bf', '<cmd>ls<CR>:b<Space>' }
-- quickly change background
nmap { '<leader>bg', [[<cmd>let &background = &background ==? 'light' ? 'dark' : 'light'<cr>]] }