From ef37731877bc0c08a7fc82637a5ea607fbb64ddf Mon Sep 17 00:00:00 2001 From: alemi Date: Fri, 6 Sep 2024 03:38:16 +0200 Subject: [PATCH] fix: no real need for annotations actually --- build.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build.lua b/build.lua index f406825..0883206 100644 --- a/build.lua +++ b/build.lua @@ -23,9 +23,3 @@ local native_path = plugin_dir .. "/lua/codemp/native.so" -- TODO get extension local download_url_native = "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_native }):wait() -- TODO can we run this asynchronously? - - -local annotations_path = plugin_dir .. "/lua/codemp/annotations.lua" -local download_url_annotations = "https://codemp.dev/releases/lua/annotations.lua" -print("downloading codemp lua annotations...") -vim.system({"curl", "-s", "-o", annotations_path, download_url_annotations }):wait() -- TODO can we run this asynchronously?