fix(font): replace removed characters with valids

This commit is contained in:
TD-Sky
2024-04-21 14:52:58 +08:00
parent 98507facfe
commit dd1fe3caae
4 changed files with 12 additions and 12 deletions

View File

@ -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