mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
Do not jump on invocation of *
This commit is contained in:
parent
566049aa4a
commit
cb151005e1
1 changed files with 3 additions and 0 deletions
|
|
@ -165,3 +165,6 @@ 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" })
|
||||
|
||||
-- Do not jump on invocation of *
|
||||
vim.keymap.set("n", "*", ":keepjumps normal! mi*`i<Cr>")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue