We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 584cc23 commit 946cf29Copy full SHA for 946cf29
modules/neovim/config/after/ftplugin/fugitive.lua
@@ -33,16 +33,19 @@ vim.cmd("normal )k=")
33
vim.keymap.set("n", "gp", function()
34
async_git({ "push", "--quiet" }, "Pushed!", "Push failed!")
35
vim.cmd("silent! close")
36
+ vim.notify("Pushing...")
37
end, opts)
38
39
vim.keymap.set("n", "gP", function()
40
async_git({ "pull", "--rebase" }, "Pulled!", "Pull failed!")
41
42
+ vim.notify("Pulling...")
43
44
45
vim.keymap.set("n", "go", function()
46
async_git({ "ppr" }, "Pushed and opened PR URL!", "Failed to push or open PR")
47
48
+ vim.notify("Opening PR...")
49
50
51
vim.keymap.set("n", "gq", function()
0 commit comments