fix(font): replace removed characters with valids
This commit is contained in:
parent
98507facfe
commit
dd1fe3caae
@ -139,10 +139,10 @@ use {
|
|||||||
build = function () require'Trans'.install() end,
|
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' },
|
||||||
{ 'mk', mode = { 'n', 'x' }, '<Cmd>TransPlay<CR>', desc = ' Auto Play' },
|
{ 'mk', mode = { 'n', 'x' }, '<Cmd>TransPlay<CR>', desc = ' Auto Play' },
|
||||||
-- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover
|
-- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover
|
||||||
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
|
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
|
||||||
},
|
},
|
||||||
dependencies = { 'kkharji/sqlite.lua', },
|
dependencies = { 'kkharji/sqlite.lua', },
|
||||||
opts = {
|
opts = {
|
||||||
@ -259,7 +259,7 @@ default_conf = {
|
|||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = vim.fn.has 'nvim-0.9' == 1 and {
|
title = vim.fn.has 'nvim-0.9' == 1 and {
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
} or nil, -- need nvim-0.9+
|
} or nil, -- need nvim-0.9+
|
||||||
auto_play = true,
|
auto_play = true,
|
||||||
@ -326,7 +326,7 @@ default_conf = {
|
|||||||
-- or use emoji
|
-- or use emoji
|
||||||
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
||||||
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
||||||
notfound = ' ', --❔ | ❓ | ❗ | ❕|
|
notfound = ' ', --❔ | ❓ | ❗ | ❕|
|
||||||
yes = '✔', -- ✅ | ✔️ | ☑
|
yes = '✔', -- ✅ | ✔️ | ☑
|
||||||
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
|
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
|
||||||
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉
|
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉
|
||||||
|
@ -129,7 +129,7 @@ Packer.nvim ~
|
|||||||
requires = { 'kkharji/sqlite.lua', },
|
requires = { 'kkharji/sqlite.lua', },
|
||||||
config = function()
|
config = function()
|
||||||
require("Trans").setup {} -- 启动Trans
|
require("Trans").setup {} -- 启动Trans
|
||||||
vim.keymap.set({"n", 'x'}, "mm", '<Cmd>Translate<CR>', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式
|
vim.keymap.set({"n", 'x'}, "mm", '<Cmd>Translate<CR>', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式
|
||||||
vim.keymap.set({'n', 'x'}, 'mk', '<Cmd>TransPlay<CR>', {desc = ' 自动发音'}) -- 自动发音选中或者光标下的单词
|
vim.keymap.set({'n', 'x'}, 'mk', '<Cmd>TransPlay<CR>', {desc = ' 自动发音'}) -- 自动发音选中或者光标下的单词
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
@ -142,11 +142,11 @@ Lazy.nvim ~
|
|||||||
"JuanZoran/Trans.nvim",
|
"JuanZoran/Trans.nvim",
|
||||||
keys = {
|
keys = {
|
||||||
-- 可以换成其他你想映射的键
|
-- 可以换成其他你想映射的键
|
||||||
{ 'mm', mode = { 'n', 'x' }, '<Cmd>Translate<CR>', desc = ' Translate' },
|
{ 'mm', mode = { 'n', 'x' }, '<Cmd>Translate<CR>', desc = ' Translate' },
|
||||||
{ 'mk', mode = { 'n', 'x' }, '<Cmd>TransPlay<CR>', desc = ' 自动发音' },
|
{ 'mk', mode = { 'n', 'x' }, '<Cmd>TransPlay<CR>', desc = ' 自动发音' },
|
||||||
|
|
||||||
-- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover
|
-- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover
|
||||||
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
|
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
|
||||||
},
|
},
|
||||||
dependencies = { 'kkharji/sqlite.lua', },
|
dependencies = { 'kkharji/sqlite.lua', },
|
||||||
opts = {
|
opts = {
|
||||||
@ -301,7 +301,7 @@ Festival配置(仅针对linux用户) ~
|
|||||||
-- or use emoji
|
-- or use emoji
|
||||||
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠
|
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠
|
||||||
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
||||||
notfound = ' ', --❔ | ❓ | ❗ | ❕|
|
notfound = ' ', --❔ | ❓ | ❗ | ❕|
|
||||||
yes = '✔', -- ✅ | ✔️ | ☑
|
yes = '✔', -- ✅ | ✔️ | ☑
|
||||||
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
|
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
|
||||||
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
|
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
|
||||||
|
@ -25,7 +25,7 @@ return {
|
|||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = vim.fn.has 'nvim-0.9' == 1 and {
|
title = vim.fn.has 'nvim-0.9' == 1 and {
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
} or nil, -- need nvim-0.9+
|
} or nil, -- need nvim-0.9+
|
||||||
auto_play = true,
|
auto_play = true,
|
||||||
@ -91,7 +91,7 @@ return {
|
|||||||
-- or use emoji
|
-- or use emoji
|
||||||
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
||||||
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
||||||
notfound = ' ', --❔ | ❓ | ❗ | ❕|
|
notfound = ' ', --❔ | ❓ | ❗ | ❕|
|
||||||
yes = '✔', -- ✅ | ✔️ | ☑
|
yes = '✔', -- ✅ | ✔️ | ☑
|
||||||
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
|
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
|
||||||
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉
|
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉
|
||||||
|
@ -5,11 +5,11 @@ local Trans = require 'Trans'
|
|||||||
local command = api.nvim_create_user_command
|
local command = api.nvim_create_user_command
|
||||||
|
|
||||||
command('Translate', function() Trans.translate() end,
|
command('Translate', function() Trans.translate() end,
|
||||||
{ desc = ' Translate cursor word' })
|
{ desc = ' Translate cursor word' })
|
||||||
|
|
||||||
|
|
||||||
command('TranslateInput', function() Trans.translate { mode = 'i' } end,
|
command('TranslateInput', function() Trans.translate { mode = 'i' } end,
|
||||||
{ desc = ' Translate input word' })
|
{ desc = ' Translate input word' })
|
||||||
|
|
||||||
command('TransPlay', function()
|
command('TransPlay', function()
|
||||||
local util = Trans.util
|
local util = Trans.util
|
||||||
|
Loading…
x
Reference in New Issue
Block a user