Skip to content

Commit

Permalink
refactor: processor.lua 支持 iOS (#1003)
Browse files Browse the repository at this point in the history
优化候选词写入记录文件, 支持 iOS
  • Loading branch information
boomker authored Aug 29, 2024
1 parent 0407f13 commit 4fbd67f
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions lua/cold_word_drop/processor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@ require("cold_word_drop.metatable")
local processor = {}

local function get_record_filername(record_type)
local path_sep = "/"
local user_data_dir = rime_api:get_user_data_dir()
local user_distribute_name = rime_api:get_distribution_code_name()
if user_distribute_name:lower():match("weasel") then
return string.format("%s\\lua\\cold_word_drop\\%s_words.lua", rime_api:get_user_data_dir(), record_type)
elseif user_distribute_name:lower():match("squirrel") then
return string.format("%s/lua/cold_word_drop/%s_words.lua", rime_api:get_user_data_dir(), record_type)
elseif user_distribute_name:lower():match("fcitx") then
return string.format("%s/lua/cold_word_drop/%s_words.lua", rime_api:get_user_data_dir(), record_type)
elseif user_distribute_name:lower():match("ibus") then
return string.format(
"%s/rime/lua/cold_word_drop/%s_words.lua",
if user_distribute_name:lower():match("weasel") then path_sep = "\\" end
if user_distribute_name:lower():match("ibus") then
return string.format("%s/rime/lua/cold_word_records/%s_words.lua",
os.getenv("HOME") .. "/.config/ibus",
record_type
)
else
local file_path = string.format("%s/lua/cold_word_records/%s_words.lua", user_data_dir, record_type)
return file_path:gsub("/", path_sep)
end
end

Expand Down

0 comments on commit 4fbd67f

Please sign in to comment.