Trans.nvim/README.md

477 lines
14 KiB
Markdown
Raw Normal View History

2022-12-21 12:36:00 +08:00
# Trans.nvim
2023-01-16 00:43:17 +08:00
<!--toc:start-->
- [Trans.nvim](#transnvim)
- [特点](#特点)
- [屏幕截图](#屏幕截图)
- [演示](#演示)
- [离线查询](#离线查询)
- [在线查询演示 (有道)](#在线查询演示-有道)
- [主题](#主题)
- [安装](#安装)
- [配置](#配置)
- [快捷键绑定](#快捷键绑定)
- [高亮组](#高亮组)
- [声明](#声明)
- [感谢](#感谢)
- [贡献](#贡献)
- [从 v1 (main)分支迁移](#从-v1-main分支迁移)
- [待办 (画大饼)](#待办-画大饼)
- [项目情况](#项目情况)
<!--toc:end-->
> **插件默认词库的路径为插件目录**
2023-04-07 19:28:43 +08:00
例如: `lazy` 用户应该在 `$HOME/.local/share/nvim/lazy/Trans.nvim`
2022-12-21 12:36:00 +08:00
## 特点
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
- `使用纯 lua 编写`
- 大部分功能可以自定义:
- 🔍 高亮
- 👀 悬浮大小
- 📜 排版顺序
- 💬 弹窗大小
- 🎉 舒服窗口动画
2023-04-07 19:28:43 +08:00
- 更多可以查看[配置](#配置)
- `离线``在线`翻译的支持
- 支持显示:
- 🌟 柯林斯星级
- 📚 牛津 3000 词汇
- 🇨🇳 中文翻译
- 🇺🇸 英文翻译 (不是英译中, 而是用英文解释)
- 🌱 词根
- etc
2023-04-07 19:28:43 +08:00
- 支持`平滑动画`
- 支持 `normal``visual`模式
> <font color='#FF9900'>不支持 visual-block mode</font>
- 本地词库单词量: `430w`
2023-02-04 15:03:02 +08:00
2022-12-21 12:36:00 +08:00
## 屏幕截图
2023-02-04 15:03:02 +08:00
2023-03-24 17:13:55 +08:00
### 演示
2023-03-19 20:47:39 +08:00
> 可以点开声音查看离线自动发音
2022-12-21 12:36:00 +08:00
2023-03-19 20:47:39 +08:00
### 离线查询
2023-03-24 17:13:55 +08:00
2023-03-19 20:47:39 +08:00
https://user-images.githubusercontent.com/107862700/226175984-1a95bea7-8d66-450e-87e1-ba9c91c37ab8.mp4
2023-01-31 23:17:03 +08:00
2023-04-07 19:28:43 +08:00
### 在线查询演示 (有道)
2023-03-24 17:13:55 +08:00
2023-03-19 20:47:39 +08:00
https://user-images.githubusercontent.com/107862700/226176106-c2962dd3-d66c-499c-b44a-1f471b79fe38.mp4
2023-01-31 23:17:03 +08:00
2023-03-24 20:40:03 +08:00
**使用在线查询需要配置相应的 app_id 和 app_passwd**
2023-04-07 19:28:43 +08:00
配置说明见: [wiki](https://github.com/JuanZoran/Trans.nvim/wiki/%E9%85%8D%E7%BD%AE#%E5%9C%A8%E7%BA%BF%E6%9F%A5%E8%AF%A2%E9%85%8D%E7%BD%AE)
2023-03-24 20:40:03 +08:00
2023-01-25 17:19:07 +08:00
### 主题
2023-02-04 15:03:02 +08:00
> 如果你有更美观或者更适合的配色, 欢迎提 PR
> 主题配色在: `lua/Trans/theme.lua`文件中,你只需要添加你主题的表就可以了
2023-01-25 17:19:07 +08:00
- `default`
![default](./theme/default.png)
2023-01-25 17:19:07 +08:00
- `dracula`
![dracula](./theme/dracula.png)
2023-01-25 17:19:07 +08:00
- `tokyonight`
![tokyonight](./theme/tokyonight.png)
2022-12-21 12:36:00 +08:00
## 安装
2023-02-04 15:03:02 +08:00
_安装之前, 首先需要明确本插件的依赖:_
- [ECDICT](https://github.com/skywind3000/ECDICT): 插件所用的离线单词数据库
- [sqlite.lua](https://github.com/kkharji/sqlite.lua): 操作数据库所用的库
- sqlite3: 数据库
2022-12-21 12:36:00 +08:00
2023-01-30 22:00:27 +08:00
<details>
<summary>Packer.nvim</summary>
2023-01-21 00:24:58 +08:00
2022-12-21 12:36:00 +08:00
```lua
use {
'JuanZoran/Trans.nvim',
run = function() require('Trans').install() end, -- 自动下载使用的本地词库
2023-03-17 10:17:37 +08:00
requires = 'kkharji/sqlite.lua', ,
2022-12-21 12:36:00 +08:00
-- 如果你不需要任何配置的话, 可以直接按照下面的方式启动
2023-01-21 00:24:58 +08:00
config = function ()
require'Trans'.setup{
-- your configuration here
}
end
2022-12-25 09:02:37 +08:00
}
```
2023-02-04 15:03:02 +08:00
**如果你想要使用 Packer 的惰性加载,这里有一个例子**
2022-12-25 09:02:37 +08:00
```lua
use {
"JuanZoran/Trans.nvim",
keys = {
2023-02-01 17:03:02 +08:00
{ {'n', 'x'}, 'mm' }, -- 换成其他你想用的key即可
2023-02-04 15:03:02 +08:00
{ {'n', 'x'}, 'mk' },
{ 'n', 'mi' },
2022-12-25 09:02:37 +08:00
},
run = function() require('Trans').install() end, -- 自动下载使用的本地词库
requires = { 'kkharji/sqlite.lua', },
2022-12-25 09:02:37 +08:00
config = function()
2023-03-24 17:13:55 +08:00
require("Trans").setup {
-- your configuration here
}
vim.keymap.set({"n", 'x'}, "mm", '<Cmd>Translate<CR>') -- 自动判断visual 还是 normal 模式
vim.keymap.set({'n', 'x'}, 'mk', '<Cmd>TransPlay<CR>') -- 自动发音选中或者光标下的单词
vim.keymap.set('n', 'mi', '<Cmd>TransInput<CR>')
2022-12-25 09:02:37 +08:00
end
2022-12-21 12:36:00 +08:00
}
```
2023-02-04 15:03:02 +08:00
2023-01-30 22:00:27 +08:00
</details>
<details>
<summary>Lazy.nvim</summary>
2022-12-25 09:02:37 +08:00
2023-01-26 13:18:40 +08:00
```lua
{
"JuanZoran/Trans.nvim",
build = function () require'Trans'.install() end,
2023-01-26 13:18:40 +08:00
keys = {
-- 可以换成其他你想映射的键
{ 'mm', mode = { 'n', 'x' }, '<Cmd>Translate<CR>', desc = ' Translate' },
2023-03-24 17:13:55 +08:00
{ 'mk', mode = { 'n', 'x' }, '<Cmd>TransPlay<CR>', desc = ' Auto Play' },
2023-01-26 13:18:40 +08:00
-- 目前这个功能的视窗还没有做好可以在配置里将view.i改成hover
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
},
dependencies = { 'kkharji/sqlite.lua', },
2023-01-26 13:18:40 +08:00
opts = {
-- your configuration there
}
}
```
2023-02-04 15:03:02 +08:00
2023-01-30 22:00:27 +08:00
</details>
2023-01-26 13:18:40 +08:00
2023-02-04 15:03:02 +08:00
<font color="#FF9900">**注意事项**: </font>
2023-04-07 19:28:43 +08:00
- 下载词典的过程中, 需要能够 `流畅的访问github下载`
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
如果下载出现问题, 正常是会自动下载
2022-12-21 12:36:00 +08:00
2023-04-07 19:28:43 +08:00
> 词库文件压缩包大小为: **281M**
> 解压缩后的大小大概为: **1.2G**
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
- 安装后如果不能正常运行, 清尝试运行 `checkhealth Trans`
2022-12-21 12:36:00 +08:00
2023-04-07 19:28:43 +08:00
- **`auto_play`** 的使用:
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
- `Linux` 需要安装`festival`
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
> `sudo apt-get install festival festvox-kallpc16k`
2022-12-21 12:36:00 +08:00
2023-04-07 19:28:43 +08:00
**如果你想要设置音色,发音可以访问:** [Festival 官方](https://www.cstr.ed.ac.uk/projects/festival/morevoices.html)
可以选择英音、美音、男声、女声
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
- `Termux` 需要安装`termux-api`
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
- `Mac` 使用系统的`say`命令
2023-02-04 15:03:02 +08:00
- `Windows` 使用原生的 Powershell 命令, 感谢[PR](https://github.com/JuanZoran/Trans.nvim/pull/34)
2023-02-04 15:03:02 +08:00
- `title`的配置,只对`neovim 0.9+`版本有效
2022-12-21 12:36:00 +08:00
2023-01-30 22:00:27 +08:00
<details>
<summary>Festival配置(仅针对linux用户)</summary>
- 配置文件
- 全局配置: `/usr/share/festival/siteinit.scm`
- 用户配置: `~/.festivalrc`
- 更改声音
- 在 festival 的 voices 文件内建立自己的文件夹
2023-02-04 15:03:02 +08:00
> 一般其默认配置目录在`/usr/share/festival/voices`
2023-02-04 15:03:02 +08:00
示例:
2023-02-04 15:03:02 +08:00
> `sudo mkdir /usr/share/festival/voices/my_voices`
- 下载想要的 voices 文件并解压
> 可能需要 
- 试听[在这里](https://www.cstr.ed.ac.uk/projects/festival/morevoices.html))
- 下载[在这里](http://festvox.org/packed/festival/2.5/voices/))
> 假设下载的文件在`Downloads`文件夹, 下载的文件为:`festvox_cmu_us_aew_cg.tar.gz`
示例:
> `cd ~/Downloads && tar -xf festvox_cmu_us_aew_cg.tar.gz`
- 将音频文件拷贝到 festival 文件夹
示例:
2023-02-04 15:03:02 +08:00
> `sudo cp -r festival/lib/voices/us/cmu_us_aew_cg/ /usr/share/festival/voices/my_voices/`
2023-02-04 15:03:02 +08:00
- 在配置文件中设置默认的声音
示例:
2023-02-04 15:03:02 +08:00
> 加入`(set! voice_default voice_cmu_indic_hin_ab_cg)`到配置文件
2023-02-04 15:03:02 +08:00
- 安装完成
- 相关说明网站
> 可能需要 
- [wiki](https://archlinux.org/packages/community/any/festival-us/) 查看更多详细配置
- [官方网站](http://festvox.org/dbs/index.html)
- [用户手册](http://www.festvox.org/docs/manual-2.4.0/festival_toc.html)
2023-01-30 22:00:27 +08:00
</details>
2022-12-21 12:36:00 +08:00
## 配置
2023-02-04 15:03:02 +08:00
2023-04-07 19:28:43 +08:00
详细见**wiki**: [基本配置说明](https://github.com/JuanZoran/Trans.nvim/wiki/%E9%85%8D%E7%BD%AE)
<details>
<summary>默认配置</summary>
2023-03-24 20:40:03 +08:00
2022-12-21 12:36:00 +08:00
```lua
2023-04-07 19:28:43 +08:00
default_conf = {
---@type string the directory for database file and password file
2023-03-24 17:13:55 +08:00
dir = require 'Trans'.plugin_dir,
2023-04-07 19:28:43 +08:00
debug = true,
2023-03-17 10:17:37 +08:00
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
theme = 'default', -- default | tokyonight | dracula
strategy = {
2023-03-17 10:17:37 +08:00
---@type { frontend:string, backend:string | string[] } fallback strategy for mode
default = {
frontend = 'hover',
backend = '*',
},
2023-01-14 10:37:21 +08:00
},
---@type table frontend options
frontend = {
---@class TransFrontendOpts
---@field keymaps table<string, string>
default = {
2023-03-24 17:13:55 +08:00
query = 'fallback',
border = 'rounded',
title = vim.fn.has 'nvim-0.9' == 1 and {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
} or nil, -- need nvim-0.9+
auto_play = true,
---@type {open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation
animation = {
open = 'slid', -- 'fold', 'slid'
close = 'slid',
interval = 12,
},
2023-03-24 17:13:55 +08:00
timeout = 2000,
2023-01-21 21:13:51 +08:00
},
---@class TransHoverOpts : TransFrontendOpts
hover = {
---@type integer Max Width of Hover Window
width = 37,
---@type integer Max Height of Hover Window
height = 27,
---@type string -- see: /lua/Trans/style/spinner
spinner = 'dots',
2023-03-24 17:13:55 +08:00
---@type string
2023-03-17 10:17:37 +08:00
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
auto_resize = true,
2023-03-24 17:13:55 +08:00
split_width = 60,
padding = 10, -- padding for hover window width
keymaps = {
2023-04-07 19:28:43 +08:00
-- INFO : No default keymaps anymore, please set it yourself
-- pageup = '<C-u>',
-- pagedown = '<C-d>',
-- pin = '<leader>[',
-- close = '<leader>]',
-- toggle_entry = '<leader>;',
2023-03-17 10:17:37 +08:00
-- play = '_', -- Deprecated
},
---@type string[] auto close events
auto_close_events = {
'InsertEnter',
'CursorMoved',
'BufLeave',
},
2023-03-17 10:17:37 +08:00
---@type table<string, string[]> order to display translate result
order = {
2023-03-17 10:17:37 +08:00
default = {
'str',
'translation',
'definition',
},
offline = {
'title',
'tag',
'pos',
'exchange',
'translation',
'definition',
},
youdao = {
'title',
'translation',
'definition',
'web',
2023-03-24 17:13:55 +08:00
},
},
icon = {
-- or use emoji
2023-03-24 17:13:55 +08:00
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
2023-03-17 10:17:37 +08:00
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
notfound = ' ', --❔ | ❓ | ❗ | ❕|
yes = '✔', -- ✅ | ✔️ | ☑
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
2023-03-24 17:13:55 +08:00
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉
2023-03-17 10:17:37 +08:00
web = '󰖟', --🌍 | 🌎 | 🌏 | 🌐 |
2023-03-24 17:13:55 +08:00
tag = '',
2023-03-17 10:17:37 +08:00
pos = '',
2023-03-24 17:13:55 +08:00
exchange = '',
2023-03-17 10:17:37 +08:00
definition = '󰗊',
2023-03-24 17:13:55 +08:00
translation = '󰊿',
},
2023-01-21 21:13:51 +08:00
},
2022-12-21 12:36:00 +08:00
},
2023-03-24 20:40:03 +08:00
}
2022-12-21 12:36:00 +08:00
```
2023-04-07 19:28:43 +08:00
</details>
2022-12-21 12:36:00 +08:00
## 快捷键绑定
2023-02-04 15:03:02 +08:00
2022-12-21 16:59:26 +08:00
**示例:**
2023-02-04 15:03:02 +08:00
2022-12-21 16:59:26 +08:00
> 示例中展示, 将`mm`映射成快捷键
2023-02-04 15:03:02 +08:00
2022-12-21 16:59:26 +08:00
```lua
2023-03-24 17:13:55 +08:00
vim.keymap.set('n', 'mi', '<Cmd>TranslateInput<CR>')
2023-03-24 20:40:03 +08:00
vim.keymap.set({'n', 'x'}, 'mm', '<Cmd>Translate<CR>')
vim.keymap.set({'n', 'x'}, 'mk', '<Cmd>TransPlay<CR>') -- 自动发音选中或者光标下的单词
2022-12-21 16:59:26 +08:00
```
2022-12-21 12:36:00 +08:00
2023-04-07 19:28:43 +08:00
**窗口快捷键**
2023-02-04 15:03:02 +08:00
2022-12-21 17:05:28 +08:00
```lua
2023-04-07 19:28:43 +08:00
require 'Trans'.setup {
frontend = {
hover = {
keymaps = {
-- pageup = 'whatever you want',
-- pagedown = 'whatever you want',
-- pin = 'whatever you want',
-- close = 'whatever you want',
-- toggle_entry = 'whatever you want',
},
2023-03-17 10:17:37 +08:00
},
2023-04-07 19:28:43 +08:00
},
2023-03-17 10:17:37 +08:00
}
2023-04-07 19:28:43 +08:00
}
2022-12-21 17:05:28 +08:00
```
2023-01-30 20:09:57 +08:00
2023-04-07 19:28:43 +08:00
> 当窗口没有打开的时候, key 会被使用`vim.api.nvim_feedkey`来执行
## 高亮组
所有主题可见 `lua/Trans/style/theme.lua`
<details>
<summary>默认主题</summary>
```lua
TransWord = {
fg = '#7ee787',
bold = true,
}
TransPhonetic = {
link = 'Linenr'
}
TransTitle = {
fg = '#0f0f15',
bg = '#75beff',
bold = true,
}
TransTitleRound = {
fg = '#75beff',
}
TransTag = {
-- fg = '#e5c07b',
link = '@tag'
}
TransExchange = {
link = 'TransTag',
}
TransPos = {
link = 'TransTag',
}
TransTranslation = {
link = 'TransWord',
}
TransDefinition = {
link = 'Moremsg',
}
TransWin = {
link = 'Normal',
}
TransBorder = {
fg = '#89B4FA',
}
TransCollins = {
fg = '#faf743',
bold = true,
}
TransFailed = {
fg = '#7aa89f',
}
TransWaitting = {
link = 'MoreMsg'
}
TransWeb = {
link = 'MoreMsg',
}
```
</details>
2022-12-21 12:36:00 +08:00
## 声明
2023-02-04 15:03:02 +08:00
- 本插件词典基于[ECDICT](https://github.com/skywind3000/ECDICT)
2022-12-21 12:36:00 +08:00
## 感谢
2023-02-04 15:03:02 +08:00
- [ECDICT](https://github.com/skywind3000/ECDICT) 本地词典的提供
- [sqlite.lua](https://github.com/kharji/sqlite.lua) 数据库访问
- [T.vim](https://github.com/sicong-li/T.vim) 灵感来源
2022-12-21 12:36:00 +08:00
2023-02-01 17:03:02 +08:00
## 贡献
2023-02-04 15:03:02 +08:00
> 更新比较频繁, 文档先鸽了 (wiki 写了一小部分
2023-02-04 15:03:02 +08:00
> 如果你想要参加这个项目, 可以提 issue, 我会把文档补齐
2023-02-01 17:03:02 +08:00
2023-04-07 19:28:43 +08:00
## 从 v1 (main)分支迁移
见[wiki](<https://github.com/JuanZoran/Trans.nvim/wiki/%E4%BB%8E(v1)main%E5%88%86%E6%94%AF%E8%BF%81%E7%A7%BB>)
2023-04-07 19:28:43 +08:00
2023-01-20 17:06:49 +08:00
## 待办 (画大饼)
2023-02-04 15:03:02 +08:00
- [x] 快捷键定义
- [x] 自动读音
2023-03-17 10:17:37 +08:00
- [x] 在线多引擎异步查询
- [x] `句子翻译` | `中翻英` 的支持
- [x] 迁移文档
2023-03-17 10:17:37 +08:00
- [ ] 多风格样式查询
- [ ] 变量命名的支持
- [ ] 历史查询结果保存
- [ ] 翻译结果替换
2023-03-18 19:05:26 +08:00
## 项目情况
[![Star History Chart](https://api.star-history.com/svg?repos=JuanZoran/Trans.nvim&type=Date)](https://star-history.com/#JuanZoran/Trans.nvim&Date)