From 6a1227dcb1510d9ef104b86f66034e0c187bf6ba Mon Sep 17 00:00:00 2001 From: Ali Almohaya Date: Sat, 29 Oct 2022 18:15:40 +0300 Subject: [PATCH] chore: handle `http` remote url --- lua/openingh/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/openingh/init.lua b/lua/openingh/init.lua index 60f7457..473a3e1 100644 --- a/lua/openingh/init.lua +++ b/lua/openingh/init.lua @@ -19,7 +19,7 @@ function M.setup() return end - M.repo_url = string.format("https://%s/%s/%s", gh.host, gh.user_or_org, gh.reponame) + M.repo_url = string.format("http://%s/%s/%s", gh.host, gh.user_or_org, gh.reponame) end function M.openFile()