all repos

gopher.nvim @ ca1bc4bd06568586375d5f669fc3641c3a9ec9cc

Minimalistic plugin for Go development
1 files changed, 1 insertions(+), 1 deletions(-)
fix(installer): check return command value
Author: Smirnov Olexander ss2316544@gmail.com
Committed at: 2022-05-30 23:33:14 +0300
Parent: 08f3d2f
M lua/gopher/installer.lua

@@ -11,7 +11,7 @@ :new({

command = "go", args = { "install", url }, on_exit = function(_, ret_val) - if ret_val ~= nil then + if ret_val ~= 0 then print("command exited with code " .. ret_val) return end