refactor: use install.lua instead of install.sh
This commit is contained in:
parent
da1f847bd0
commit
35807247ff
84
README.md
84
README.md
@ -77,7 +77,7 @@ https://user-images.githubusercontent.com/107862700/215941500-3293c571-20a1-44e2
|
|||||||
_安装之前, 首先需要明确本插件的依赖:_
|
_安装之前, 首先需要明确本插件的依赖:_
|
||||||
|
|
||||||
- [ECDICT](https://github.com/skywind3000/ECDICT): 插件所用的离线单词数据库
|
- [ECDICT](https://github.com/skywind3000/ECDICT): 插件所用的离线单词数据库
|
||||||
- sqlite.lua: 操作数据库所用的库
|
- [sqlite.lua](https://github.com/kkharji/sqlite.lua): 操作数据库所用的库
|
||||||
- sqlite3: 数据库
|
- sqlite3: 数据库
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
@ -86,8 +86,8 @@ _安装之前, 首先需要明确本插件的依赖:_
|
|||||||
```lua
|
```lua
|
||||||
use {
|
use {
|
||||||
'JuanZoran/Trans.nvim'
|
'JuanZoran/Trans.nvim'
|
||||||
run = 'bash ./install.sh',
|
run = function() require('Trans').install() end, -- 自动下载使用的本地词库
|
||||||
requires = 'kkharji/sqlite.lua',
|
requires = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' },
|
||||||
-- 如果你不需要任何配置的话, 可以直接按照下面的方式启动
|
-- 如果你不需要任何配置的话, 可以直接按照下面的方式启动
|
||||||
config = function ()
|
config = function ()
|
||||||
require'Trans'.setup{
|
require'Trans'.setup{
|
||||||
@ -107,8 +107,8 @@ use {
|
|||||||
{ {'n', 'x'}, 'mk' },
|
{ {'n', 'x'}, 'mk' },
|
||||||
{ 'n', 'mi' },
|
{ 'n', 'mi' },
|
||||||
},
|
},
|
||||||
run = 'bash ./install.sh', -- 自动下载使用的本地词库
|
run = function() require('Trans').install() end, -- 自动下载使用的本地词库
|
||||||
requires = 'kkharji/sqlite.lua',
|
requires = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' },
|
||||||
config = function()
|
config = function()
|
||||||
require("Trans").setup {} -- 启动Trans
|
require("Trans").setup {} -- 启动Trans
|
||||||
vim.keymap.set({"n", 'x'}, "mm", '<Cmd>Translate<CR>', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式
|
vim.keymap.set({"n", 'x'}, "mm", '<Cmd>Translate<CR>', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式
|
||||||
@ -134,7 +134,7 @@ use {
|
|||||||
-- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover
|
-- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover
|
||||||
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
|
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
|
||||||
},
|
},
|
||||||
dependencies = { 'kkharji/sqlite.lua', lazy = true },
|
dependencies = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' },
|
||||||
opts = {
|
opts = {
|
||||||
-- your configuration there
|
-- your configuration there
|
||||||
}
|
}
|
||||||
@ -178,9 +178,9 @@ use {
|
|||||||
|
|
||||||
- 需要确保安装了`nodejs`
|
- 需要确保安装了`nodejs`
|
||||||
- 进入插件的`tts`目录运行`npm install`
|
- 进入插件的`tts`目录运行`npm install`
|
||||||
> 如果`install.sh`运行正常则自动安装,如果安装失败,请尝试手动安装
|
> 如果`install`运行正常则自动安装,如果安装失败,请尝试手动安装
|
||||||
|
|
||||||
- `title`的配置,只对`neovim 0.9`版本有效
|
- `title`的配置,只对`neovim 0.9+`版本有效
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>Festival配置(仅针对linux用户)</summary>
|
<summary>Festival配置(仅针对linux用户)</summary>
|
||||||
@ -243,7 +243,11 @@ require'Trans'.setup {
|
|||||||
width = 37,
|
width = 37,
|
||||||
height = 27,
|
height = 27,
|
||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = title,
|
title = vim.fn.has('nvim-0.9') == 1 and {
|
||||||
|
{ '', 'TransTitleRound' },
|
||||||
|
{ ' Trans', 'TransTitle' },
|
||||||
|
{ '', 'TransTitleRound' },
|
||||||
|
} or nil,
|
||||||
keymap = {
|
keymap = {
|
||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
@ -265,32 +269,10 @@ require'Trans'.setup {
|
|||||||
'BufLeave',
|
'BufLeave',
|
||||||
},
|
},
|
||||||
auto_play = true,
|
auto_play = true,
|
||||||
timeout = 3000,
|
timeout = 2000,
|
||||||
spinner = 'dots', -- 查看所有样式: /lua/Trans/util/spinner
|
spinner = 'dots', -- 查看所有样式: /lua/Trans/util/spinner
|
||||||
-- spinner = 'moon'
|
-- spinner = 'moon'
|
||||||
},
|
},
|
||||||
float = {
|
|
||||||
width = 0.8,
|
|
||||||
height = 0.8,
|
|
||||||
border = 'rounded',
|
|
||||||
title = title,
|
|
||||||
keymap = {
|
|
||||||
quit = 'q',
|
|
||||||
},
|
|
||||||
animation = {
|
|
||||||
open = 'fold',
|
|
||||||
close = 'fold',
|
|
||||||
interval = 10,
|
|
||||||
},
|
|
||||||
tag = {
|
|
||||||
wait = '#519aba',
|
|
||||||
fail = '#e46876',
|
|
||||||
success = '#10b981',
|
|
||||||
},
|
|
||||||
engine = {
|
|
||||||
'本地',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
order = { -- only work on hover mode
|
order = { -- only work on hover mode
|
||||||
'title',
|
'title',
|
||||||
'tag',
|
'tag',
|
||||||
@ -313,29 +295,25 @@ require'Trans'.setup {
|
|||||||
-- no = '❌'
|
-- no = '❌'
|
||||||
},
|
},
|
||||||
theme = 'default',
|
theme = 'default',
|
||||||
-- theme = 'dracula',
|
dir = vim.fn.expand('$HOME/.vim/dict'),
|
||||||
-- theme = 'tokyonight',
|
-- float = {
|
||||||
|
-- width = 0.8,
|
||||||
db_path = '$HOME/.vim/dict/ultimate.db',
|
-- height = 0.8,
|
||||||
|
-- border = 'rounded',
|
||||||
engine = {
|
-- keymap = {
|
||||||
-- baidu = {
|
-- quit = 'q',
|
||||||
-- appid = '',
|
-- },
|
||||||
-- appPasswd = '',
|
-- animation = {
|
||||||
|
-- open = 'fold',
|
||||||
|
-- close = 'fold',
|
||||||
|
-- interval = 10,
|
||||||
|
-- },
|
||||||
|
-- tag = {
|
||||||
|
-- wait = '#519aba',
|
||||||
|
-- fail = '#e46876',
|
||||||
|
-- success = '#10b981',
|
||||||
-- },
|
-- },
|
||||||
-- -- youdao = {
|
|
||||||
-- appkey = '',
|
|
||||||
-- appPasswd = '',
|
|
||||||
-- },
|
-- },
|
||||||
},
|
|
||||||
|
|
||||||
-- TODO :
|
|
||||||
-- register word
|
|
||||||
-- history = {
|
|
||||||
-- -- TOOD
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- TODO :add online translate engine
|
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
18
install.sh
18
install.sh
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
if test -e "$HOME/.vim/dict/ultimate.db"; then
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
mkdir -p "$HOME/.vim/dict"
|
|
||||||
|
|
||||||
wget https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip -O /tmp/dict.zip
|
|
||||||
|
|
||||||
unzip /tmp/dict.zip -d "$HOME/.vim/dict" && rm -rf /tmp/dict.zip
|
|
||||||
|
|
||||||
uNames=$(uname -s)
|
|
||||||
osName=${uNames:0:4}
|
|
||||||
if [ "$osName" != "Linux" ]; then
|
|
||||||
cd ./tts/ && npm install
|
|
||||||
fi
|
|
@ -13,7 +13,8 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
|
|||||||
M.query = function(data)
|
M.query = function(data)
|
||||||
if data.is_word == false or data.from == 'zh' then return end
|
if data.is_word == false or data.from == 'zh' then return end
|
||||||
|
|
||||||
data.path = vim.fn.expand(data.path or require('Trans').conf.dir .. '/ultimate.db')
|
|
||||||
|
data.path = data.path or require('Trans').conf.dir .. '/ultimate.db'
|
||||||
data.engine = 'offline'
|
data.engine = 'offline'
|
||||||
data.formatter = data.formatter or M.formatter
|
data.formatter = data.formatter or M.formatter
|
||||||
data.query_field = data.query_field or M.query_field
|
data.query_field = data.query_field or M.query_field
|
||||||
|
@ -60,7 +60,7 @@ return {
|
|||||||
-- no = '❌'
|
-- no = '❌'
|
||||||
},
|
},
|
||||||
theme = 'default',
|
theme = 'default',
|
||||||
dir = '$HOME/.vim/dict',
|
dir = vim.fn.expand('$HOME/.vim/dict'),
|
||||||
-- float = {
|
-- float = {
|
||||||
-- width = 0.8,
|
-- width = 0.8,
|
||||||
-- height = 0.8,
|
-- height = 0.8,
|
||||||
|
@ -0,0 +1,42 @@
|
|||||||
|
return function()
|
||||||
|
-- INFO :Chceck ultimate.db exists
|
||||||
|
local dir = require('Trans').conf.dir
|
||||||
|
local path = dir .. '/ultimate.db'
|
||||||
|
if vim.fn.filereadable(path) == 1 then
|
||||||
|
vim.notify('Database already exists', vim.log.WARN)
|
||||||
|
return
|
||||||
|
else
|
||||||
|
vim.notify('Trying to download database', vim.log.INFO)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
-- INFO :Download ultimate.db
|
||||||
|
local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip'
|
||||||
|
local loc = dir .. '/ultimate.zip'
|
||||||
|
require('plenary.curl').get(uri, {
|
||||||
|
output = loc,
|
||||||
|
callback = function(output)
|
||||||
|
if output.exsit == 0 and output.status == 200 then
|
||||||
|
if vim.fn.executable('unzip') == 0 then
|
||||||
|
vim.notify('unzip not found, Please unzip ' .. loc .. 'manually', vim.log.ERROR)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local cmd = string.format('unzip %s -d %s', path, dir)
|
||||||
|
os.execute(cmd)
|
||||||
|
os.remove(path)
|
||||||
|
|
||||||
|
vim.notify('Download database successfully', vim.log.INFO)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local debug_message = 'Download database failed:' .. vim.inspect(output)
|
||||||
|
vim.notify(debug_message, vim.log.ERROR)
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- INFO : tts dependencies
|
||||||
|
if vim.fn.has('linux') == 0 and vim.fn.has('mac') == 0 then
|
||||||
|
os.execute('cd ./tts/ && npm install')
|
||||||
|
end
|
||||||
|
end
|
@ -54,7 +54,7 @@ local check = function()
|
|||||||
|
|
||||||
|
|
||||||
-- INFO :Check ultimate.db
|
-- INFO :Check ultimate.db
|
||||||
local db_path = vim.fn.expand(require('Trans').conf.dir .. '/ultimate.db')
|
local db_path = require('Trans').conf.dir .. '/ultimate.db'
|
||||||
if vim.fn.filereadable(db_path) == 1 then
|
if vim.fn.filereadable(db_path) == 1 then
|
||||||
ok [[ultimate database found ]]
|
ok [[ultimate database found ]]
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user