From df52f2339c8938094c2b19b4d8448194d82f813b Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Wed, 15 Mar 2023 22:24:41 +0800 Subject: [PATCH] refactor: remove Trans.define and see offline as first backend --- lua/Trans/core/define.lua | 19 ------------------- lua/Trans/core/setup.lua | 26 +------------------------- lua/Trans/init.lua | 7 +++++++ 3 files changed, 8 insertions(+), 44 deletions(-) delete mode 100644 lua/Trans/core/define.lua diff --git a/lua/Trans/core/define.lua b/lua/Trans/core/define.lua deleted file mode 100644 index d78ba56..0000000 --- a/lua/Trans/core/define.lua +++ /dev/null @@ -1,19 +0,0 @@ ----@class Trans ----@field define TransDefine - ----@class TransDefine -return { - ---@type TransMode[] - modes = { - 'normal', - 'visual', - 'input', - }, - -- backends = { - -- 'offline', - -- 'baidu', - -- }, - frontends = { - 'hover', - } -} diff --git a/lua/Trans/core/setup.lua b/lua/Trans/core/setup.lua index 63d76be..2333ebe 100644 --- a/lua/Trans/core/setup.lua +++ b/lua/Trans/core/setup.lua @@ -1,8 +1,7 @@ local Trans = require('Trans') local function set_strategy_opts(conf) - local define = Trans.define - local all_modes = define.modes + local all_modes = Trans.modes local all_backends = Trans.backend.all_name local function parse_backend(backend) @@ -35,28 +34,6 @@ local function set_strategy_opts(conf) end -local function set_frontend_opts(conf) - local all_frontends = Trans.define.frontends - - - local global_frontend_opts = conf.frontend - local meta = { - __index = function(tbl, key) - tbl[key] = global_frontend_opts[key] - return tbl[key] - end - } - - for _, frontend in ipairs(all_frontends) do - local frontend_opts = global_frontend_opts[frontend] - if not frontend_opts then - global_frontend_opts[frontend] = setmetatable({}, meta) - else - setmetatable(frontend_opts, meta) - end - end -end - local function define_highlights(conf) local set_hl = vim.api.nvim_set_hl @@ -81,6 +58,5 @@ return function(opts) conf.dir = vim.fn.expand(conf.dir) set_strategy_opts(conf) - set_frontend_opts(conf) define_highlights(conf) end diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index 85b015a..63e3b55 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -23,9 +23,16 @@ end ---@class Trans ---@field style table @Style module ---@field cache table @Cache for translated data object +---@field modes string[] @all modes name + local M = metatable('core', { style = metatable("style"), cache = {}, + modes = { + 'normal', + 'visual', + 'input', + }, augroup = vim.api.nvim_create_augroup('Trans', { clear = true }) })