diff --git a/README.md b/README.md index 01cb397..5aa541d 100644 --- a/README.md +++ b/README.md @@ -139,10 +139,10 @@ use { build = function () require'Trans'.install() end, keys = { -- 可以换成其他你想映射的键 - { 'mm', mode = { 'n', 'x' }, 'Translate', desc = ' Translate' }, + { 'mm', mode = { 'n', 'x' }, 'Translate', desc = '󰊿 Translate' }, { 'mk', mode = { 'n', 'x' }, 'TransPlay', desc = ' Auto Play' }, -- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover - { 'mi', 'TranslateInput', desc = ' Translate From Input' }, + { 'mi', 'TranslateInput', desc = '󰊿 Translate From Input' }, }, dependencies = { 'kkharji/sqlite.lua', }, opts = { @@ -259,7 +259,7 @@ default_conf = { border = 'rounded', title = vim.fn.has 'nvim-0.9' == 1 and { { '', 'TransTitleRound' }, - { ' Trans', 'TransTitle' }, + { '󰊿 Trans', 'TransTitle' }, { '', 'TransTitleRound' }, } or nil, -- need nvim-0.9+ auto_play = true, @@ -326,7 +326,7 @@ default_conf = { -- or use emoji list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦 star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 | - notfound = ' ', --❔ | ❓ | ❗ | ❕| + notfound = '󰆆 ', --❔ | ❓ | ❗ | ❕| yes = '✔', -- ✅ | ✔️ | ☑ no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ | cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ diff --git a/doc/Trans.txt b/doc/Trans.txt index a76cd51..63e7dfa 100644 --- a/doc/Trans.txt +++ b/doc/Trans.txt @@ -129,7 +129,7 @@ Packer.nvim ~ requires = { 'kkharji/sqlite.lua', }, config = function() require("Trans").setup {} -- 启动Trans - vim.keymap.set({"n", 'x'}, "mm", 'Translate', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式 + vim.keymap.set({"n", 'x'}, "mm", 'Translate', { desc = '󰊿 Translate' }) -- 自动判断virtual 还是 normal 模式 vim.keymap.set({'n', 'x'}, 'mk', 'TransPlay', {desc = ' 自动发音'}) -- 自动发音选中或者光标下的单词 end } @@ -142,11 +142,11 @@ Lazy.nvim ~ "JuanZoran/Trans.nvim", keys = { -- 可以换成其他你想映射的键 - { 'mm', mode = { 'n', 'x' }, 'Translate', desc = ' Translate' }, + { 'mm', mode = { 'n', 'x' }, 'Translate', desc = '󰊿 Translate' }, { 'mk', mode = { 'n', 'x' }, 'TransPlay', desc = ' 自动发音' }, -- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover - { 'mi', 'TranslateInput', desc = ' Translate From Input' }, + { 'mi', 'TranslateInput', desc = '󰊿 Translate From Input' }, }, dependencies = { 'kkharji/sqlite.lua', }, opts = { @@ -301,7 +301,7 @@ Festival配置(仅针对linux用户) ~ -- or use emoji list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠 star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 | - notfound = ' ', --❔ | ❓ | ❗ | ❕| + notfound = '󰆆 ', --❔ | ❓ | ❗ | ❕| yes = '✔', -- ✅ | ✔️ | ☑ no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ | cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █ diff --git a/lua/Trans/core/conf.lua b/lua/Trans/core/conf.lua index 6f7c506..36f03f3 100644 --- a/lua/Trans/core/conf.lua +++ b/lua/Trans/core/conf.lua @@ -25,7 +25,7 @@ return { border = 'rounded', title = vim.fn.has 'nvim-0.9' == 1 and { { '', 'TransTitleRound' }, - { ' Trans', 'TransTitle' }, + { '󰊿 Trans', 'TransTitle' }, { '', 'TransTitleRound' }, } or nil, -- need nvim-0.9+ auto_play = true, @@ -91,7 +91,7 @@ return { -- or use emoji list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦 star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 | - notfound = ' ', --❔ | ❓ | ❗ | ❕| + notfound = '󰆆 ', --❔ | ❓ | ❗ | ❕| yes = '✔', -- ✅ | ✔️ | ☑ no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ | cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ diff --git a/plugin/Trans.lua b/plugin/Trans.lua index 3cc1992..2c96f97 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -5,11 +5,11 @@ local Trans = require 'Trans' local command = api.nvim_create_user_command command('Translate', function() Trans.translate() end, - { desc = ' Translate cursor word' }) + { desc = '󰊿 Translate cursor word' }) command('TranslateInput', function() Trans.translate { mode = 'i' } end, - { desc = ' Translate input word' }) + { desc = '󰊿 Translate input word' }) command('TransPlay', function() local util = Trans.util