docs: modify readme file

This commit is contained in:
JuanZoran 2023-01-10 23:37:26 +08:00
parent 01f5882b13
commit 17ffaf69c9
4 changed files with 122 additions and 58 deletions

142
README.md
View File

@ -96,36 +96,113 @@ use {
## 配置 ## 配置
```lua ```lua
require'Trans'.setup{ require'Trans'.setu{
display = { style = {
style = 'minimal', ui = {
max_height = 50, -- 小于0代表无限制 input = 'float',
max_width = 50, n = 'cursor',
collins_star = true, -- 是否显示柯林斯星级 v = 'cursor'
oxford = true, -- 是否显示为牛津3000词汇
wrap = true, -- 是否折叠超出width的部分
border_style = 'rounded', -- 边框属性
view = 'cursor', -- TODO, 目前还未测试, 请不要更改
offset_x = 2, -- 弹窗相对光标的偏移
offset_y = 2,
}, },
order = { -- 排版的顺序 window = {
'title', -- 如果你不想显示某一部分, 可以直接删除该部分 cursor = {
'tag', border = 'rounded',
'pos', width = 50, -- 最大宽高
'exchange', height = 50,
'zh', },
'en', float = {
border = 'rounded',
width = 0.9, -- 相对宽高
height = 0.8,
},
limit = nil,
},
},
order = {
offline = {
'Title',
'Tag',
'Pos',
'Exchange',
'Translation',
-- NOTE :如果你想限制某个组件的行数可以设置max_size
-- { 'Definition', max_size = 4 }, -- TODO : better format
},
-- online = {
-- -- TODO
-- },
},
ui = {
highlight = {
TransWord = {
fg = '#7ee787',
bold = true,
},
TransPhonetic = {
link = 'Linenr'
},
TransRef = {
fg = '#75beff',
bold = true,
},
TransTag = {
fg = '#e5c07b',
},
TransExchange = {
link = 'TransTag',
},
TransPos = {
link = 'TransTag',
},
TransTranslation = {
link = 'TransWord',
},
TransDefinition = {
-- fg = '#bc8cff',
link = 'Moremsg',
},
TransCursorWin = {
link = 'Normal',
}, },
db_path = '$HOME/.vim/dict/ultimate.db', -- 词典的数据库位置 TransCursorBorder = {
-- 如果你是手动安装, 可以自定义 link = 'FloatBorder',
}
},
icon = { icon = {
star = '⭐', -- 柯林斯星级图标 star = '⭐',
isOxford = '✔', -- 牛津3000词汇的标志 isOxford = '✔',
notOxford = '' notOxford = ''
}, },
auto_close = true, -- 移动光标关闭弹窗 display = {
phnoetic = true,
collins = true,
oxford = true,
-- TODO
-- history = false,
},
},
base = {
db_path = '$HOME/.vim/dict/ultimate.db',
auto_close = true,
engine = {
-- TODO
'offline',
}
},
-- map = {
-- -- TODO
-- },
-- history = {
-- -- TOOD
-- }
-- TODO add online translate engine
-- online_search = {
-- enable = false,
-- engine = {},
-- }
-- TODO register word
} }
``` ```
@ -134,25 +211,14 @@ require'Trans'.setup{
> 示例中展示, 将`mm`映射成快捷键 > 示例中展示, 将`mm`映射成快捷键
```lua ```lua
-- normal-mode -- normal-mode
vim.keymap.set('n', 'mm', '<Cmd>TranslateCursorWord<CR>') vim.keymap.set({'n', 'v'}, 'mm', '<Cmd>Translate<CR>')
vim.keymap.set('n', 'mi', '<Cmd>TranslateInput<CR>')
-- visual-mode
vim.keymap.set('v', 'mm', '<Esc><Cmd>TranslateSelectWord<CR>')
``` ```
## 高亮组 ## 高亮组
```lua ```lua
hlgroup = { -- TODO : add explanation
word = 'TransWord',
phonetic = 'TransPhonetic',
ref = 'TransRef', -- 如: 标签: | 中文翻译: 之类的前导词
tag = 'TransTag',
exchange = 'TransExchange',
pos = 'TransPos',
zh = 'TransZh',
en = 'TransEn',
}
``` ```
## 声明 ## 声明

View File

@ -1,6 +1,6 @@
local M = {} local M = {}
M.component = function(field) M.component = function(field, max_size)
if field.translation then if field.translation then
local ref = { local ref = {
{ '中文翻译', 'TransRef' } { '中文翻译', 'TransRef' }
@ -12,8 +12,13 @@ M.component = function(field)
emptyline = true, emptyline = true,
needformat = true, needformat = true,
} }
local size = 0
for trans in vim.gsplit(field.translation, '\n', true) do for trans in vim.gsplit(field.translation, '\n', true) do
size = size + 1
table.insert(translations, trans) table.insert(translations, trans)
if size == max_size then
break
end
end end
return { ref, translations } return { ref, translations }

View File

@ -4,13 +4,13 @@ M.conf = {
style = { style = {
ui = { ui = {
input = 'float', input = 'float',
normal = 'cursor', n = 'cursor',
select = 'cursor' v = 'cursor',
}, },
window = { window = {
cursor = { cursor = {
border = 'rounded', border = 'rounded',
width = 50, width = 40,
height = 50, height = 50,
}, },
float = { float = {
@ -18,14 +18,9 @@ M.conf = {
width = 0.9, width = 0.9,
height = 0.8, height = 0.8,
}, },
-- NOTE :如果你想限制某个组件的行数,可以设置 (名称与order相同)
-- Example:
-- limit = {
-- En = 1, -- 只显示第一行,(一般为最广泛的释义)
-- },
limit = nil,
}, },
}, },
order = { order = {
offline = { offline = {
'Title', 'Title',
@ -33,6 +28,7 @@ M.conf = {
'Pos', 'Pos',
'Exchange', 'Exchange',
'Translation', 'Translation',
-- NOTE :如果你想限制某个组件的行数可以设置max_size
-- { 'Definition', max_size = 4 }, -- { 'Definition', max_size = 4 },
}, },
-- online = { -- online = {

View File

@ -4,14 +4,13 @@ local core = require("Trans.core")
local function get_opts(opts) local function get_opts(opts)
local mode = vim.api.nvim_get_mode().mode
local default_conf = { local default_conf = {
method = vim.api.nvim_get_mode().mode, method = mode,
engine = { engine = conf.base.engine,
'offline',
-- TODO : other engine
},
win = { win = {
style = 'cursor', style = conf.style.ui[opts.method or mode],
width = conf.style.window.cursor.width, width = conf.style.window.cursor.width,
height = conf.style.window.cursor.height height = conf.style.window.cursor.height
}, },
@ -36,7 +35,6 @@ local function get_opts(opts)
return vim.tbl_extend('force', default_conf, opts) return vim.tbl_extend('force', default_conf, opts)
end end
-- EXAMPLE : -- EXAMPLE :
-- require('Trans').translate({ -- require('Trans').translate({
-- method = 'input', -- 不填则自动判断mode获取查询的单词 -- method = 'input', -- 不填则自动判断mode获取查询的单词
@ -85,7 +83,6 @@ local function create_win(win)
return bufnr, winid return bufnr, winid
end end
local function translate(opts) local function translate(opts)
vim.validate { vim.validate {
opts = { opts, 'table', true } opts = { opts, 'table', true }