From 2389ec7be3083443196b7e74a5575b9f38dab659 Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 5 Sep 2024 05:45:46 +0200 Subject: [PATCH] fix: print when downloading should not be a silent action --- build.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/build.lua b/build.lua index aba9083..c29388d 100644 --- a/build.lua +++ b/build.lua @@ -21,5 +21,6 @@ local plugin_dir = vim.fn.fnamemodify(debug.getinfo(1, "S").source:sub(2), ":p:h -- end local native_path = plugin_dir .. "/lua/codemp/native.so" -- TODO get extension based on platform local download_url = "https://codemp.dev/releases/lua/codemp_native-linux.so" -- TODO get url based on platform +print("downloading codemp native lua extension...") vim.system({"curl", "-s", "-o", native_path, download_url }):wait() -- TODO can we run this asynchronously?