Skip to content

Commit

Permalink
nvim: restore <leader>h/l for moving to buffer, tmux ignores the S in…
Browse files Browse the repository at this point in the history
… C-S-*
  • Loading branch information
chris468 committed Jul 1, 2024
1 parent 64dc734 commit cb1d461
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ return {
keys = {
{ "<leader>bb", "<cmd>e #<cr>", desc = "Last" },
{ "<leader>bo", "<cmd>BufferLineCloseOthers<cr>", desc = "Delete others" },
{ "<leader>h", "<cmd>BufferLineCyclePrev<cr>", desc = "Previous buffer" },
{ "<leader>l", "<cmd>BufferLineCycleNext<cr>", desc = "Next buffer" },
{ "<C-S-H>", "<cmd>BufferLineCyclePrev<cr>", desc = "Previous buffer" },
{ "<C-S-L>", "<cmd>BufferLineCycleNext<cr>", desc = "Next buffer" },
},
Expand Down

0 comments on commit cb1d461

Please sign in to comment.