chore: make hover window focusable and update docs

This commit is contained in:
JuanZoran 2023-04-16 16:31:35 +08:00
parent 335c5079cc
commit 3faab735fb
4 changed files with 38 additions and 34 deletions

View File

@ -1,49 +1,47 @@
# Trans.nvim # Trans.nvim
<!--toc:start--> <!--toc:start-->
- [Trans.nvim](#transnvim)
- [特点](#特点)
- [屏幕截图](#屏幕截图)
- [演示](#演示)
- [离线查询](#离线查询)
- [在线查询演示 (有道)](#在线查询演示-有道)
- [主题](#主题)
- [安装](#安装)
- [配置](#配置)
- [快捷键绑定](#快捷键绑定)
- [高亮组](#高亮组)
- [声明](#声明)
- [感谢](#感谢)
- [贡献](#贡献)
- [从 v1 (main)分支迁移](#从-v1-main分支迁移)
- [待办 (画大饼)](#待办-画大饼)
- [项目情况](#项目情况)
<!--toc:end-->
- [Trans.nvim](#transnvim)
- [特点](#特点)
- [屏幕截图](#屏幕截图)
- [演示](#演示)
- [离线查询](#离线查询)
- [在线查询演示 (有道)](#在线查询演示-有道)
- [主题](#主题)
- [安装](#安装)
- [配置](#配置)
- [快捷键绑定](#快捷键绑定)
- [高亮组](#高亮组)
- [声明](#声明)
- [感谢](#感谢)
- [贡献](#贡献)
- [从 v1 (main)分支迁移](#从-v1-main分支迁移)
- [待办 (画大饼)](#待办-画大饼)
- [项目情况](#项目情况)
<!--toc:end-->
> **插件默认词库的路径为插件目录** > **插件默认词库的路径为插件目录**
例如: `lazy` 用户应该在 `$HOME/.local/share/nvim/lazy/Trans.nvim` 例如: `lazy` 用户应该在 `$HOME/.local/share/nvim/lazy/Trans.nvim`
## 特点 ## 特点
- `使用纯 lua 编写` - `使用纯 lua 编写`
- **可以定义快捷键读英文单词**
- 大部分功能可以自定义: - 大部分功能可以自定义:
- 高亮 - 🔍 高亮
- 悬浮大小 - 👀 悬浮大小
- 排版顺序 - 📜 排版顺序
- 弹窗大小 - 💬 弹窗大小
- `舒服窗口动画` - 🎉 舒服窗口动画
- 更多可以查看[配置](#配置) - 更多可以查看[配置](#配置)
- `离线``在线`翻译的支持 - `离线``在线`翻译的支持
- 支持显示: - 支持显示:
- 柯林斯星级 - 🌟 柯林斯星级
- 牛津 3000 词汇 - 📚 牛津 3000 词汇
- 中文翻译 - 🇨🇳 中文翻译
- 英文翻译 (不是英译中, 而是用英文解释) - 🇺🇸 英文翻译 (不是英译中, 而是用英文解释)
- 词根 - 🌱 词根
- etc - etc
- 支持`平滑动画` - 支持`平滑动画`
- 支持 `normal``visual`模式 - 支持 `normal``visual`模式
@ -138,6 +136,7 @@ use {
```lua ```lua
{ {
"JuanZoran/Trans.nvim", "JuanZoran/Trans.nvim",
build = function () require'Trans'.install() end,
keys = { keys = {
-- 可以换成其他你想映射的键 -- 可以换成其他你想映射的键
{ 'mm', mode = { 'n', 'x' }, '<Cmd>Translate<CR>', desc = ' Translate' }, { 'mm', mode = { 'n', 'x' }, '<Cmd>Translate<CR>', desc = ' Translate' },

View File

@ -15,4 +15,9 @@
- [ ] Unlimit width for sentence - [ ] Unlimit width for sentence
已知问题:
1. 缓存了的单词, 无法使用toggle_entry 进入页面
2. 加载配置需要输入所有表的key
- default_strategy can't deal with table correctly - default_strategy can't deal with table correctly

View File

@ -175,7 +175,7 @@ end
---@param str string ---@param str string
---@return boolean ---@return boolean
function M.is_word(str) function M.is_word(str)
return str:find('%W') == nil return str:find '%W' == nil
end end
---@param list any[] ---@param list any[]

View File

@ -198,7 +198,7 @@ local default_opts = {
-- zindex -- zindex
style = 'minimal', style = 'minimal',
border = 'rounded', border = 'rounded',
focusable = false, focusable = true,
noautocmd = true, noautocmd = true,
}, },
} }