mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-13 19:04:36 +02:00
feat(bufferline): add keymap to rename current tab
This commit is contained in:
parent
d0c366e4d8
commit
a80f39a9ca
1 changed files with 1 additions and 0 deletions
|
@ -197,6 +197,7 @@ map("n", "<leader><tab><tab>", "<cmd>tabnew<cr>", { desc = "New Tab" })
|
|||
map("n", "<leader><tab>]", "<cmd>tabnext<cr>", { desc = "Next Tab" })
|
||||
map("n", "<leader><tab>d", "<cmd>tabclose<cr>", { desc = "Close Tab" })
|
||||
map("n", "<leader><tab>[", "<cmd>tabprevious<cr>", { desc = "Previous Tab" })
|
||||
map("n", "<leader><tab>r", ":BufferLineTabRename ", { desc = "Rename Current Tab" })
|
||||
|
||||
-- native snippets. only needed on < 0.11, as 0.11 creates these by default
|
||||
if vim.fn.has("nvim-0.11") == 0 then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue