diff --git a/lua/astrocommunity/git/openingh-nvim/init.lua b/lua/astrocommunity/git/openingh-nvim/init.lua index 7987cef9f..5844e91e9 100644 --- a/lua/astrocommunity/git/openingh-nvim/init.lua +++ b/lua/astrocommunity/git/openingh-nvim/init.lua @@ -4,7 +4,10 @@ return { cmd = { "OpenInGHRepo", "OpenInGHFile", "OpenInGHFileLines" }, keys = { { prefix .. "o", "OpenInGHRepo", desc = "Open git repo in web", mode = { "n" } }, + { prefix .. "O", "OpenInGHRepo+", desc = "Copy git repo url", mode = { "n" } }, { prefix .. "f", "OpenInGHFile", desc = "Open git file in web", mode = { "n" } }, + { prefix .. "F", "OpenInGHFile+", desc = "Copy git file url", mode = { "n" } }, { prefix .. "f", "OpenInGHFileLines", desc = "Open git lines in web", mode = { "x" } }, + { prefix .. "F", "OpenInGHFileLines+", desc = "Copy git lines url", mode = { "x" } }, }, }