fix: try to fix install.lua mistakes
This commit is contained in:
parent
0d4eec6f2e
commit
4a0f9b5c85
@ -62,16 +62,11 @@ function curl.get(uri, opts)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local error = {}
|
|
||||||
local on_stderr = function(_, stderr)
|
|
||||||
error[#error + 1] = table.concat(stderr)
|
|
||||||
end
|
|
||||||
|
|
||||||
local on_exit = function(_, exit)
|
local on_exit = function(_, exit)
|
||||||
callback {
|
callback {
|
||||||
exit = exit,
|
exit = exit,
|
||||||
body = table.concat(outputs),
|
body = table.concat(outputs),
|
||||||
error = table.concat(error, '\n')
|
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -79,7 +74,6 @@ function curl.get(uri, opts)
|
|||||||
vim.fn.jobstart(table.concat(cmd, ' '), {
|
vim.fn.jobstart(table.concat(cmd, ' '), {
|
||||||
stdin = 'null',
|
stdin = 'null',
|
||||||
on_stdout = on_stdout,
|
on_stdout = on_stdout,
|
||||||
on_stderr = on_stderr,
|
|
||||||
on_exit = on_exit,
|
on_exit = on_exit,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
@ -5,29 +5,34 @@ return function()
|
|||||||
-- INFO :Check ultimate.db exists
|
-- INFO :Check ultimate.db exists
|
||||||
local dir = Trans.conf.dir
|
local dir = Trans.conf.dir
|
||||||
local path = dir .. '/ultimate.db'
|
local path = dir .. '/ultimate.db'
|
||||||
|
|
||||||
local fn = vim.fn
|
local fn = vim.fn
|
||||||
|
if fn.isdirectory(dir) == 0 then
|
||||||
|
fn.mkdir(dir, 'p')
|
||||||
|
end
|
||||||
|
|
||||||
if fn.filereadable(path) == 1 then
|
if fn.filereadable(path) == 1 then
|
||||||
vim.notify('Database already exists', vim.log.WARN)
|
vim.notify('Database already exists', vim.log.WARN)
|
||||||
return
|
return
|
||||||
else
|
|
||||||
vim.notify('Trying to download database', vim.log.INFO)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
vim.notify('Trying to download database', vim.log.INFO)
|
||||||
|
|
||||||
-- INFO :Download ultimate.db
|
-- INFO :Download ultimate.db
|
||||||
local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip'
|
local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip'
|
||||||
local loc = dir .. '/ultimate.zip'
|
local zip = dir .. '/ultimate.zip'
|
||||||
|
if fn.filereadable(zip) then os.remove(zip) end
|
||||||
|
|
||||||
local handle = function(output)
|
local handle = function(output)
|
||||||
if output.exit == 0 and fn.filereadable(loc) then
|
if output.exit == 0 and fn.filereadable(zip) then
|
||||||
if fn.executable('unzip') == 0 then
|
if fn.executable('unzip') == 0 then
|
||||||
vim.notify('unzip not found, Please unzip ' .. loc .. 'manually', vim.log.ERROR)
|
vim.notify('unzip not found, Please unzip ' .. zip .. 'manually', vim.log.ERROR)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local cmd = string.format('unzip %s -d %s', path, dir)
|
local cmd = string.format('unzip %s -d %s', zip, dir)
|
||||||
local status = os.execute(cmd)
|
local status = os.execute(cmd)
|
||||||
os.remove(path)
|
os.remove(zip)
|
||||||
if status == 0 then
|
if status == 0 then
|
||||||
vim.notify('Download database successfully', vim.log.INFO)
|
vim.notify('Download database successfully', vim.log.INFO)
|
||||||
return
|
return
|
||||||
@ -40,7 +45,7 @@ return function()
|
|||||||
|
|
||||||
|
|
||||||
Trans.curl.get(uri, {
|
Trans.curl.get(uri, {
|
||||||
output = loc,
|
output = zip,
|
||||||
callback = handle,
|
callback = handle,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
|
local node = require('Trans').util.node
|
||||||
|
local it, t, f, co = node.item, node.text, node.format, node.conjunction
|
||||||
|
|
||||||
|
|
||||||
---@type TransHoverRenderer
|
---@type TransHoverRenderer
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
function M.web()
|
function M.web(hover, result)
|
||||||
|
if not result.web then return end
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user