mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
fix: print when downloading
should not be a silent action
This commit is contained in:
parent
3c3c1fd7c4
commit
2389ec7be3
1 changed files with 1 additions and 0 deletions
|
@ -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?
|
||||
|
|
Loading…
Reference in a new issue