a34c46ad34
删除 `rime.lua`,拆分到 `lua/` 文件夹内。 方案中的 `- lua_xxx@xxx` 修改为 `- lua_xxx@*xxx`(加一个星号)。
12 lines
311 B
Lua
12 lines
311 B
Lua
-- 为用户词典中(输入过)的内容结尾加上一个星号 *
|
|
local function is_in_user_dict(input, env)
|
|
for cand in input:iter() do
|
|
if (string.find(cand.type, "user")) then
|
|
cand.comment = cand.comment .. '*'
|
|
end
|
|
yield(cand)
|
|
end
|
|
end
|
|
|
|
return is_in_user_dict
|