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.
2 parents 6e1df18 + 8e3cb48 commit 76182aeCopy full SHA for 76182ae
lua/neogit/client.lua
@@ -72,8 +72,10 @@ function M.editor(target, client)
72
editor.rebase_editor(target, send_client_quit)
73
elseif target:find("COMMIT_EDITMSG$") then
74
editor.commit_editor(target, send_client_quit)
75
- elseif target:find("MERGE_MSG$") or target:find("TAG_EDITMSG$") then
+ elseif target:find("MERGE_MSG$") then
76
editor.merge_editor(target, send_client_quit)
77
+ elseif target:find("TAG_EDITMSG$") then
78
+ editor.tag_editor(target, send_client_quit)
79
else
80
local notification = require("neogit.lib.notification")
81
notification.warn(target .. " has not been implemented yet")
0 commit comments