Bugfix: Don't Start Server Right Away (#40)

This MR simplifies the plugin quite a bit by only attempting to start the Go server after you specifically try to run a command. This streamlines working on feature branches and removes the need for a `base_branch` property entirely.
This commit is contained in:
Harrison (Harry) Cramer
2023-08-17 16:22:53 -04:00
committed by GitHub
parent f4aafe46a9
commit f5bf720b61
9 changed files with 91 additions and 156 deletions

View File

@@ -11,7 +11,6 @@ local M = {}
local replyPopup = Popup(u.create_popup_state("Reply", "80%", "80%"))
M.reply = function(discussion_id)
if u.base_invalid() then return end
replyPopup:mount()
keymaps.set_popup_keymaps(replyPopup, M.send_reply(discussion_id))
end
@@ -28,7 +27,6 @@ end
-- Places all of the discussions into a readable list
M.list_discussions = function()
if u.base_invalid() then return end
job.run_job("discussions", "GET", nil, function(data)
if type(data.discussions) ~= "table" then
vim.notify("No discussions for this MR")