feat: add ellipsis replacement functionality on InsertLeave
This commit is contained in:
+17
-1
@@ -799,7 +799,16 @@ M.indentor = {
|
||||
M.lazygit = {
|
||||
{ -- LazyGit
|
||||
"<leader>lg",
|
||||
"<cmd>LazyGit<cr>",
|
||||
function()
|
||||
require("data.func").open_lazygit_popup()
|
||||
end,
|
||||
desc = "LazyGit",
|
||||
},
|
||||
{ -- LazyGit
|
||||
"<leader>gg",
|
||||
function()
|
||||
require("data.func").open_lazygit_popup()
|
||||
end,
|
||||
desc = "LazyGit",
|
||||
},
|
||||
}
|
||||
@@ -853,6 +862,13 @@ M.misc = {
|
||||
end,
|
||||
desc = "Yank Line-text",
|
||||
},
|
||||
{ -- Yank and trim selection
|
||||
lhs = "<leader>y",
|
||||
rhs = function()
|
||||
require("data.func").trim_yank()
|
||||
end,
|
||||
desc = "Yank and trim selection",
|
||||
},
|
||||
{ -- Hardmode
|
||||
lhs = "<leader>uH",
|
||||
rhs = function()
|
||||
|
||||
Reference in New Issue
Block a user