fix: can set wrap by setup function
This commit is contained in:
parent
e7d066677c
commit
dc531951ff
8
README.md
Normal file
8
README.md
Normal file
@ -0,0 +1,8 @@
|
||||
# TODO
|
||||
- 关键字高亮
|
||||
- 多风格样式
|
||||
- 移动光标自动关闭窗口
|
||||
- etc
|
||||
|
||||
# FIXME
|
||||
- cursor模式下会自动聚焦在新窗口
|
@ -12,6 +12,7 @@ return {
|
||||
exchange = true,
|
||||
Trans_en = true,
|
||||
Trans_zh = true,
|
||||
wrap = false,
|
||||
},
|
||||
view = {
|
||||
-- TODO: style: buffer | cursor | window
|
||||
|
@ -25,7 +25,7 @@ vim.api.nvim_buf_set_option(buf, 'filetype', 'Trans')
|
||||
-- }
|
||||
|
||||
local function show_win(width, height)
|
||||
vim.api.nvim_open_win(buf, true, {
|
||||
local win = vim.api.nvim_open_win(buf, true, {
|
||||
relative = 'cursor',
|
||||
title = 'Trans',
|
||||
title_pos = 'center',
|
||||
@ -35,8 +35,7 @@ local function show_win(width, height)
|
||||
border = 'rounded',
|
||||
focusable = false,
|
||||
})
|
||||
-- vim.api.nvim_win_set_option(win, 'warp', true)
|
||||
|
||||
vim.api.nvim_win_set_option(win, 'wrap', display.wrap)
|
||||
end
|
||||
|
||||
-- @return string array
|
||||
@ -138,4 +137,8 @@ function M.query()
|
||||
-- TODO:
|
||||
end
|
||||
|
||||
function M.toggle()
|
||||
-- TODO: wrap some function
|
||||
end
|
||||
|
||||
return M
|
||||
|
@ -13,3 +13,5 @@ vim.api.nvim_create_autocmd('VimLeave', {
|
||||
})
|
||||
|
||||
vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans").query_cursor, {})
|
||||
|
||||
-- TODO: set command to close preview window automatically
|
||||
|
Loading…
x
Reference in New Issue
Block a user