From e2fe39eeff10c160a85c47695d3755cb8f5391a0 Mon Sep 17 00:00:00 2001 From: tqcq <99722391+tqcq@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:00:31 +0800 Subject: [PATCH] fix fetch word --- lua/Trans/core/translate.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/Trans/core/translate.lua b/lua/Trans/core/translate.lua index f9263ce..98fc94f 100644 --- a/lua/Trans/core/translate.lua +++ b/lua/Trans/core/translate.lua @@ -74,8 +74,10 @@ local strategy = { -- HACK : Core process logic local function process(opts) opts = init_opts(opts) - local str = opts.str - if not str or str == '' then return end + + + if not opts.str or opts.str == '' then return end + local str = opts.str:match("(%w+)") -- Find in cache