Trans.nvim/lua/Trans/core/frontend.lua

42 lines
909 B
Lua
Raw Normal View History

local Trans = require('Trans')
2023-03-12 21:33:00 +08:00
local conf = Trans.conf
local frontend_opts = conf.frontend
2023-03-12 21:33:00 +08:00
local function set_frontend_keymap(frontend)
local set = vim.keymap.set
local keymap_opts = { silent = true, expr = true }
for action, key in pairs(frontend.opts.keymap) do
set('n', key, function()
local instance = frontend.get_active_instance()
2023-03-14 13:18:53 +08:00
2023-03-12 21:33:00 +08:00
if instance then
instance:execute(action)
else
return key
end
end, keymap_opts)
end
end
local M = setmetatable({}, {
__index = function(self, name)
local opts = vim.tbl_extend('keep', frontend_opts[name] or {}, frontend_opts.default)
local frontend = require('Trans.frontend.' .. name)
frontend.opts = opts
self[name] = frontend
set_frontend_keymap(frontend)
return frontend
end
})
return M