fix: can set wrap by setup function

This commit is contained in:
JuanZoran 2022-12-19 22:23:12 +08:00
parent e7d066677c
commit dc531951ff
4 changed files with 17 additions and 3 deletions

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# TODO
- 关键字高亮
- 多风格样式
- 移动光标自动关闭窗口
- etc
# FIXME
- cursor模式下会自动聚焦在新窗口

View File

@ -12,6 +12,7 @@ return {
exchange = true, exchange = true,
Trans_en = true, Trans_en = true,
Trans_zh = true, Trans_zh = true,
wrap = false,
}, },
view = { view = {
-- TODO: style: buffer | cursor | window -- TODO: style: buffer | cursor | window

View File

@ -25,7 +25,7 @@ vim.api.nvim_buf_set_option(buf, 'filetype', 'Trans')
-- } -- }
local function show_win(width, height) local function show_win(width, height)
vim.api.nvim_open_win(buf, true, { local win = vim.api.nvim_open_win(buf, true, {
relative = 'cursor', relative = 'cursor',
title = 'Trans', title = 'Trans',
title_pos = 'center', title_pos = 'center',
@ -35,8 +35,7 @@ local function show_win(width, height)
border = 'rounded', border = 'rounded',
focusable = false, focusable = false,
}) })
-- vim.api.nvim_win_set_option(win, 'warp', true) vim.api.nvim_win_set_option(win, 'wrap', display.wrap)
end end
-- @return string array -- @return string array
@ -138,4 +137,8 @@ function M.query()
-- TODO: -- TODO:
end end
function M.toggle()
-- TODO: wrap some function
end
return M return M

View File

@ -13,3 +13,5 @@ vim.api.nvim_create_autocmd('VimLeave', {
}) })
vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans").query_cursor, {}) vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans").query_cursor, {})
-- TODO: set command to close preview window automatically