From 3ba1bf49cf131872648715a007a03f5e2c65e349 Mon Sep 17 00:00:00 2001 From: Patrick Auernig Date: Sat, 7 Sep 2024 17:55:21 +0200 Subject: [PATCH] plugin/neogit: add keybind to open push dialog --- lua/valeth/plugins/neogit.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/valeth/plugins/neogit.lua b/lua/valeth/plugins/neogit.lua index 2ec7182..4befbb9 100644 --- a/lua/valeth/plugins/neogit.lua +++ b/lua/valeth/plugins/neogit.lua @@ -7,9 +7,10 @@ spec.dependencies = { } spec.keys = { - { "vs", "Neogit", desc = "Open NeoGit" }, - { "vc", "Neogit commit", desc = "Open NeoGit commit" }, - { "vpu", "!git push", desc = "Push local commits to upstream" }, + { "vs", "Neogit", desc = "Open NeoGit" }, + { "vc", "Neogit commit", desc = "Open NeoGit commit" }, + { "vpp", "Neogit push", desc = "Open NeoGit push" }, + { "vpup", "!git push", desc = "Push local commits to upstream" }, } spec.config = true