fix: fix setup function bugs
This commit is contained in:
parent
3902886ac0
commit
b3b758f58f
@ -1,8 +1,8 @@
|
|||||||
# TODO
|
# TODO
|
||||||
- 关键字高亮
|
- 关键字高亮
|
||||||
- 多风格样式
|
- 多风格样式
|
||||||
- 移动光标自动关闭窗口
|
|
||||||
- etc
|
- etc
|
||||||
|
- ~~移动光标自动关闭窗口~~
|
||||||
|
|
||||||
# FIXME
|
# FIXME
|
||||||
- cursor模式下会自动聚焦在新窗口
|
- ~~cursor模式下会自动聚焦在新窗口~~
|
||||||
|
8
install.sh
Executable file
8
install.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
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
|
@ -13,13 +13,21 @@ return {
|
|||||||
Trans_en = true,
|
Trans_en = true,
|
||||||
Trans_zh = true,
|
Trans_zh = true,
|
||||||
wrap = true,
|
wrap = true,
|
||||||
|
border_style = 'rounded',
|
||||||
|
view = 'cursor',
|
||||||
|
offset_x = 2,
|
||||||
|
offset_y = 2,
|
||||||
},
|
},
|
||||||
view = {
|
order = {
|
||||||
-- TODO: style: buffer | cursor | window
|
'title',
|
||||||
-- style = 'buffer',
|
'tag',
|
||||||
-- buffer_pos = 'bottom', -- only works when view.style == 'buffer'
|
'pos',
|
||||||
|
'exchange',
|
||||||
|
'zh',
|
||||||
|
'en',
|
||||||
},
|
},
|
||||||
db_path = '/home/zoran/project/neovim/ecdict-ultimate-sqlite/ultimate.db', -- FIXME: change the path
|
|
||||||
|
db_path = '$HOME/.vim/dict/ultimate.db', -- FIXME: change the path
|
||||||
|
|
||||||
icon = {
|
icon = {
|
||||||
star = '⭐',
|
star = '⭐',
|
||||||
@ -39,8 +47,8 @@ return {
|
|||||||
-- TODO: precise match or return closest match result
|
-- TODO: precise match or return closest match result
|
||||||
-- precise_match = true,
|
-- precise_match = true,
|
||||||
|
|
||||||
-- TODO: leamma search
|
-- TODO: lemma search
|
||||||
-- leamma = false,
|
-- lemma = false,
|
||||||
|
|
||||||
-- TODO: register word
|
-- TODO: register word
|
||||||
}
|
}
|
||||||
|
@ -1,73 +1,64 @@
|
|||||||
-- local conf = require("Trans").conf
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
local display = require("Trans").conf.display
|
local display = require("Trans").conf.display
|
||||||
local icon = require("Trans").conf.icon
|
local icon = require("Trans").conf.icon
|
||||||
|
local order = require("Trans").conf.order
|
||||||
|
|
||||||
|
|
||||||
local buf = vim.api.nvim_create_buf(false, true)
|
local buf = vim.api.nvim_create_buf(false, true)
|
||||||
vim.api.nvim_buf_set_option(buf, 'filetype', 'Trans')
|
|
||||||
local win = 0
|
local win = 0
|
||||||
|
vim.api.nvim_buf_set_option(buf, 'filetype', 'Trans')
|
||||||
|
|
||||||
|
|
||||||
-- {
|
|
||||||
-- audio = "",
|
|
||||||
-- bnc = 5222,
|
|
||||||
-- definition = "n. slang for sexual intercourse",
|
|
||||||
-- exchange = "d:fucked/p:fucked/i:fucking/3:fucks/s:fucks",
|
|
||||||
-- frq = 5040,
|
|
||||||
-- id = 1180286,
|
|
||||||
-- phonetic = "fʌk",
|
|
||||||
-- pos = "n:37/v:63",
|
|
||||||
-- sw = "fuck",
|
|
||||||
-- tag = "",
|
|
||||||
-- translation = "vt. 与...性交, 欺骗, 诅咒\nvi. 性交\nn. 性交, 些微, 杂种\ninterj. 他妈的, 混帐",
|
|
||||||
-- word = "fuck"
|
|
||||||
-- }
|
|
||||||
|
|
||||||
local function show_win(width, height)
|
local function show_win(width, height)
|
||||||
win = vim.api.nvim_open_win(buf, false, {
|
win = vim.api.nvim_open_win(buf, false, {
|
||||||
relative = 'cursor',
|
relative = 'cursor',
|
||||||
title = 'Trans',
|
title = 'Trans',
|
||||||
title_pos = 'center',
|
title_pos = 'center',
|
||||||
style = display.style,
|
style = display.style,
|
||||||
row = 2, col = 2, width = width > display.max_width and display.max_width or width,
|
col = display.offset_x,
|
||||||
|
row = display.offset_y,
|
||||||
|
width = width > display.max_width and display.max_width or width,
|
||||||
height = height > display.max_height and display.max_height or height,
|
height = height > display.max_height and display.max_height or height,
|
||||||
border = 'rounded',
|
border = display.border_style,
|
||||||
focusable = false,
|
focusable = true,
|
||||||
})
|
})
|
||||||
vim.api.nvim_win_set_option(win, 'wrap', display.wrap)
|
vim.api.nvim_win_set_option(win, 'wrap', display.wrap)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- @return string array
|
-- NOTE: title
|
||||||
local function get_text(query_res)
|
local function get_title(text, query_res)
|
||||||
local text = {
|
local title = string.format('%s [%s] ', query_res.word, query_res.phonetic) ..
|
||||||
-- NOTE: word + phonetic + collins_star
|
|
||||||
string.format('%s [%s] ', query_res.word, query_res.phonetic) ..
|
|
||||||
(display.oxford and (query_res.oxford == 1 and icon.isOxford .. ' ' or icon.notOxford .. ' ') or '') ..
|
(display.oxford and (query_res.oxford == 1 and icon.isOxford .. ' ' or icon.notOxford .. ' ') or '') ..
|
||||||
((display.collins_star and query_res.collins) and string.rep(icon.star, query_res.collins) or '')
|
((display.collins_star and query_res.collins) and string.rep(icon.star, query_res.collins) or '')
|
||||||
}
|
table.insert(text, title)
|
||||||
|
end
|
||||||
|
|
||||||
-- NOTE: tag
|
-- NOTE: tag
|
||||||
if display.tag and query_res.tag:len() > 0 then
|
local function get_tag(text, query_res)
|
||||||
|
if #query_res.tag > 0 then
|
||||||
local tag = query_res.tag:gsub('zk', '中考'):gsub('gk', '高考'):gsub('ky', '考研'):gsub('cet4', '四级'):
|
local tag = query_res.tag:gsub('zk', '中考'):gsub('gk', '高考'):gsub('ky', '考研'):gsub('cet4', '四级'):
|
||||||
gsub('cet6', '六级'):
|
gsub('cet6', '六级'):
|
||||||
gsub('ielts', '雅思'):gsub('toefl', '托福'):gsub('gre', 'GRE')
|
gsub('ielts', '雅思'):gsub('toefl', '托福'):gsub('gre', 'GRE')
|
||||||
table.insert(text, '标签:')
|
table.insert(text, '标签:')
|
||||||
table.insert(text, ' ' .. tag)
|
table.insert(text, ' ' .. tag)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- NOTE: pos 词性
|
-- NOTE: pos 词性
|
||||||
if display.pos and query_res.pos:len() > 0 then
|
local function get_pos(text, query_res)
|
||||||
|
if #query_res.pos > 0 then
|
||||||
table.insert(text, '词性:')
|
table.insert(text, '词性:')
|
||||||
-- TODO: figure out pos sense
|
for v in vim.gsplit(query_res.pos, [[/]]) do
|
||||||
table.insert(text, ' ' .. query_res.pos)
|
table.insert(text, string.format(' %s', v .. '%'))
|
||||||
end
|
end
|
||||||
table.insert(text, '')
|
table.insert(text, '')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- NOTE: exchange
|
-- NOTE: exchange
|
||||||
if display.exchange and query_res.exchange:len() > 0 then
|
local function get_exchange(text, query_res)
|
||||||
-- local list = vim.gsplit(query_res.exchange, [[\]])
|
if #query_res.exchange > 0 then
|
||||||
table.insert(text, '词形变化:')
|
table.insert(text, '词形变化:')
|
||||||
local exchange_map = {
|
local exchange_map = {
|
||||||
p = '过去式',
|
p = '过去式',
|
||||||
@ -83,32 +74,55 @@ local function get_text(query_res)
|
|||||||
table.insert(text, string.format(' %s: %s', exchange_map[v:sub(1, 1)], v:sub(3)))
|
table.insert(text, string.format(' %s: %s', exchange_map[v:sub(1, 1)], v:sub(3)))
|
||||||
-- FIXME: 中文字符与字母位宽不一致, 暂时无法对齐
|
-- FIXME: 中文字符与字母位宽不一致, 暂时无法对齐
|
||||||
end
|
end
|
||||||
end
|
|
||||||
table.insert(text, '')
|
table.insert(text, '')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- NOTE: 中文翻译
|
-- NOTE: 中文翻译
|
||||||
if display.Trans_zh and query_res.translation:len() > 0 then
|
local function get_zh(text, query_res)
|
||||||
|
if #query_res.translation > 0 then
|
||||||
table.insert(text, '中文翻译:')
|
table.insert(text, '中文翻译:')
|
||||||
for v in vim.gsplit(query_res.translation, '\n') do
|
for v in vim.gsplit(query_res.translation, '\n') do
|
||||||
-- table.insert(text, ' ' .. v)
|
|
||||||
table.insert(text, ' ' .. v)
|
table.insert(text, ' ' .. v)
|
||||||
end
|
end
|
||||||
end
|
|
||||||
table.insert(text, '')
|
table.insert(text, '')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- NOTE: 英文翻译
|
-- NOTE: 英文翻译
|
||||||
|
local function get_en(text, query_res)
|
||||||
if display.Trans_en and query_res.definition:len() > 0 then
|
if display.Trans_en and query_res.definition:len() > 0 then
|
||||||
table.insert(text, '英文翻译:')
|
table.insert(text, '英文翻译:')
|
||||||
for v in vim.gsplit(query_res.definition, '\n') do
|
for v in vim.gsplit(query_res.definition, '\n') do
|
||||||
table.insert(text, ' ' .. v)
|
table.insert(text, ' ' .. v)
|
||||||
end
|
end
|
||||||
end
|
|
||||||
table.insert(text, '')
|
table.insert(text, '')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local handler = {
|
||||||
|
title = get_title,
|
||||||
|
tag = get_tag,
|
||||||
|
pos = get_pos,
|
||||||
|
exchange = get_exchange,
|
||||||
|
zh = get_zh,
|
||||||
|
en = get_en,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
-- @return string array
|
||||||
|
local function get_text(query_res)
|
||||||
|
local text = {}
|
||||||
|
for _, v in pairs(order) do
|
||||||
|
handler[v](text, query_res)
|
||||||
|
end
|
||||||
return text
|
return text
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local function set_text(query_res)
|
local function set_text(query_res)
|
||||||
local text = query_res and get_text(query_res) or { '没有找到相关定义' }
|
local text = query_res and get_text(query_res) or { '没有找到相关定义' }
|
||||||
|
|
||||||
@ -126,9 +140,6 @@ function M.query_cursor()
|
|||||||
vim.api.nvim_buf_set_option(buf, 'modifiable', true)
|
vim.api.nvim_buf_set_option(buf, 'modifiable', true)
|
||||||
local word = vim.fn.expand('<cword>')
|
local word = vim.fn.expand('<cword>')
|
||||||
local res = require("Trans.database").query(word)
|
local res = require("Trans.database").query(word)
|
||||||
|
|
||||||
-- vim.pretty_print(res)
|
|
||||||
|
|
||||||
local width, height = set_text(res)
|
local width, height = set_text(res)
|
||||||
show_win(width, height)
|
show_win(width, height)
|
||||||
vim.api.nvim_buf_set_option(buf, 'modifiable', false)
|
vim.api.nvim_buf_set_option(buf, 'modifiable', false)
|
||||||
|
@ -9,6 +9,14 @@ local M = {}
|
|||||||
|
|
||||||
M.conf = require("Trans.conf")
|
M.conf = require("Trans.conf")
|
||||||
function M.setup(conf)
|
function M.setup(conf)
|
||||||
|
if conf.display then
|
||||||
|
conf.display = vim.tbl_extend('force', M.conf.display, conf.display)
|
||||||
|
end
|
||||||
|
|
||||||
|
if conf.icon then
|
||||||
|
conf.icon = vim.tbl_extend('force', M.conf.icon, conf.icon)
|
||||||
|
end
|
||||||
|
|
||||||
M.conf = vim.tbl_extend('force', M.conf, conf)
|
M.conf = vim.tbl_extend('force', M.conf, conf)
|
||||||
require("Trans.setup")
|
require("Trans.setup")
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user