Coder Social home page Coder Social logo

fkxxyz / rime-cloverpinyin Goto Github PK

View Code? Open in Web Editor NEW
1.8K 16.0 126.0 56 KB

🍀️四叶草拼音输入方案,做最好用的基于rime开源的简体拼音输入方案!

Home Page: https://www.fkxxyz.com/d/cloverpinyin/

License: GNU Lesser General Public License v3.0

Shell 8.92% Python 91.08%
rime pinyin schema fcitx

rime-cloverpinyin's Introduction

四叶草的博客

这是我的博客主页仓库,欢迎访问 www.fkxxyz.com

rime-cloverpinyin's People

Contributors

fkxxyz avatar flyingicedragon avatar lostattractor avatar pcrab avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

rime-cloverpinyin's Issues

Gentoo上源码构建失败

你好,

在Gentoo上build出现如下错误:

开始构建部署二进制
E0717 20:46:43.316689 26061 config_compiler.cc:428] resource could not be loaded: key_bindings
E0717 20:46:43.316735 26061 config_compiler.cc:536] unresolved dependency: Patch(key_bindings:/emacs_editing)
E0717 20:46:43.316761 26061 config_compiler.cc:536] unresolved dependency: PendingChild(clover.schema:/key_binder/bindings)
E0717 20:46:43.316767 26061 config_compiler.cc:536] unresolved dependency: PendingChild(clover.schema:/key_binder)
E0717 20:46:43.316772 26061 config_component.cc:250] error building config: clover.schema

是缺少什么依赖文件吗?(librime已安装)
暂时通过删除clover.schema.yaml中的key_binder section绕过去了,能正常输入。

PS: 直接从release下载安装,输入框不能弹出。

推荐一个好功能:当前日期或时间的输入

我不太会用github上传代码,所以在以Issues形式给展示一个日期和时间的快捷输入。

1,使用效果
(1)输入“rq”或者“date”,会展示很多当前日期的格式,输入”sj“或者“time”则会展示很多当前时间的格式
(2)此外还定义了“xq”(星期),“nyr”(年月日),“yr”(月日),“now”(现在),大家可以根据自己的习惯对代码进行修改。

1
2
3

2,配置方法
(1)拷贝下面代码到一个txt文件中

---------------
-- 本文件中的日期代码由网友“镜中的迷离”倾情奉献
-- 阿拉伯数字转小写代码由网友“风箫箫”倾情奉献。
-- 深山红叶合成整理
-- Usage:
-- engine:
-- ...
-- translators:
-- ...
-- - lua_translator@lua_function3
-- - lua_translator@lua_function4
-- ...
-- filters:
-- ...
-- - lua_filter@lua_function1
-- - lua_filter@lua_function2
-- ...
-- 请在方案配置文件比如wubi86.schema.yaml的engine\translators:下面添加滤镜引用:
-- - lua_translator@date_translator
-- - lua_translator@week_translator




function toNyear(year,mother,day)
--天干名称
local cTianGan = {"甲","乙","丙","丁","戊","己","庚","辛","壬","癸"}
--地支名称
local cDiZhi = {"子","丑","寅","卯","辰","巳","午", "未","申","酉","戌","亥"}
--属相名称
local cShuXiang = {"鼠","牛","虎","兔","龙","蛇", "马","羊","猴","鸡","狗","猪"}
--农历日期名
local cDayName =
{
"*","初一","初二","初三","初四","初五",
"初六","初七","初八","初九","初十",
"十一","十二","十三","十四","十五",
"十六","十七","十八","十九","二十",
"廿一","廿二","廿三","廿四","廿五",
"廿六","廿七","廿八","廿九","三十"
}
--农历月份名
local cMonName = {"*","正","二","三","四","五","六", "七","八","九","十","十一","腊"}


--公历每月前面的天数
local wMonthAdd = {0,31,59,90,120,151,181,212,243,273,304,334}
-- 农历数据
local wNongliData = {2635,333387,1701,1748,267701,694,2391,133423,1175,396438
,3402,3749,331177,1453,694,201326,2350,465197,3221,3402
,400202,2901,1386,267611,605,2349,137515,2709,464533,1738
,2901,330421,1242,2651,199255,1323,529706,3733,1706,398762
,2741,1206,267438,2647,1318,204070,3477,461653,1386,2413
,330077,1197,2637,268877,3365,531109,2900,2922,398042,2395
,1179,267415,2635,661067,1701,1748,398772,2742,2391,330031
,1175,1611,200010,3749,527717,1452,2742,332397,2350,3222
,268949,3402,3493,133973,1386,464219,605,2349,334123,2709
,2890,267946,2773,592565,1210,2651,395863,1323,2707,265877}


local wCurYear,wCurMonth,wCurDay;
local nTheDate,nIsEnd,m,k,n,i,nBit;
local szNongli, szNongliDay,szShuXiang;
---取当前公历年、月、日---
wCurYear = tonumber(year);
wCurMonth = tonumber(mother);
wCurDay = tonumber(day);
---计算到初始时间1921年2月8日的天数:1921-2-8(正月初一)---
nTheDate = (wCurYear - 1921) * 365 + (wCurYear - 1921) / 4 + wCurDay + wMonthAdd[wCurMonth] - 38
if (((wCurYear % 4) == 0) and (wCurMonth > 2)) then
nTheDate = nTheDate + 1
end








---------------------------
--计算农历天干、地支、月、日---
nIsEnd = 0;
m = 0;
while nIsEnd ~= 1 do
if wNongliData[m+1] < 4095 then
k = 11;
else
k = 12;
end
n = k;
while n>=0 do
--获取wNongliData(m)的第n个二进制位的值
nBit = wNongliData[m+1];
for i=1,n do
nBit = math.floor(nBit/2);
end
nBit = nBit % 2;
if nTheDate <= (29 + nBit) then
nIsEnd = 1;
break
end
nTheDate = nTheDate - 29 - nBit;
n = n - 1;
end
if nIsEnd ~= 0 then
break;
end
m = m + 1;
end


wCurYear = 1921 + m;
wCurMonth = k - n + 1;
wCurDay = nTheDate;
if k == 12 then
if wCurMonth == wNongliData[m+1] / 65536 + 1 then
wCurMonth = 1 - wCurMonth;
elseif wCurMonth > wNongliData[m+1] / 65536 + 1 then
wCurMonth = wCurMonth - 1;
end
end
wCurDay = math.floor(wCurDay)
--print('农历', wCurYear, wCurMonth, wCurDay)
--生成农历天干、地支、属相 ==> wNongli--
szShuXiang = cShuXiang[(((wCurYear - 4) % 60) % 12) + 1]
szShuXiang = cShuXiang[(((wCurYear - 4) % 60) % 12) + 1];
szNongli = '农历' .. cTianGan[(((wCurYear - 4) % 60) % 10)+1] .. cDiZhi[(((wCurYear - 4) % 60) % 12) + 1] .. '(' .. szShuXiang .. ')年'
--szNongli,"%s(%s%s)年",szShuXiang,cTianGan[((wCurYear - 4) % 60) % 10],cDiZhi[((wCurYear - 4) % 60) % 12]);


--生成农历月、日 ==> wNongliDay--*/
if wCurMonth < 1 then
szNongliDay = "闰" .. cMonName[(-1 * wCurMonth) + 1]
else
szNongliDay = cMonName[wCurMonth+1]
end


szNongliDay = szNongliDay .. "月" .. cDayName[wCurDay+1]
return szNongli .. szNongliDay, szNongliDay
end


--- date/time translator
word=0 --单字优先模式参数


function datetime_translator(input, seg)

date_y=os.date("%Y") --取年
date_m=os.date("%m") --取月
date_d=os.date("%d") --取日


--普通日期2,类似2020年2月4日
num_m=os.date("%m")+0
num_m1=math.modf(num_m)
num_d=os.date("%d")+0
num_d1=math.modf(num_d)
date5=os.date("%Y年")..tostring(num_m1).."月"..tostring(num_d1).."日"
date2=os.date("%Y").."/"..tostring(num_m1).."/"..tostring(num_d1)
date4=os.date("%Y").."-"..tostring(num_m1).."-"..tostring(num_d1)
date9=tostring(num_m1).."/"..tostring(num_d1)
date10=tostring(num_m1).."月"..tostring(num_d1).."日"

--大写日期,类似二〇二〇年十一月二十六日
date_y=date_y:gsub("%d",{
["1"]="一",
["2"]="二",
["3"]="三",
["4"]="四",
["5"]="五",
["6"]="六",
["7"]="七",
["8"]="八",
["9"]="九",
["0"]="〇",
})
date_y=date_y.."年"

date_m=date_m:gsub("%d",{
["1"]="一",
["2"]="二",
["3"]="三",
["4"]="四",
["5"]="五",
["6"]="六",
["7"]="七",
["8"]="八",
["9"]="九",
["0"]="",
})
date_m=date_m.."月"
if num_m1==10 then date_m="十月" end
if num_m1==11 then date_m="十一月" end
if num_m1==12 then date_m="十二月" end

date_d=date_d:gsub("%d",{
["1"]="一",
["2"]="二",
["3"]="三",
["4"]="四",
["5"]="五",
["6"]="六",
["7"]="七",
["8"]="八",
["9"]="九",
["0"]="",
})
date_d=date_d.."日"
if num_d1>9 then
if num_d1<19 then
date_d="十"..string.sub(date_d,4,#date_d)
end
end
if num_d1>19 then date_d=string.sub(date_d,1,3).."十"..string.sub(date_d,4,#date_d) end
date11=date_y..date_m..date_d
date13=date_m..date_d

--农历
date12, date14=toNyear(os.date("%Y"),os.date("%m"),os.date("%d"))
--date12=date12:gsub("年","年")


--if (input == "date" or input == "iuja" or input == "rejj" or input == "jjad" or input == "now" or input == "dqrq" or input == "rq" or input == "riqi" or input == "nyr") then
if (input == "date" or input == "rq") then

yield(Candidate("date", seg.start, seg._end, os.date("%Y/%m/%d"), " "))  --2020/02/04
yield(Candidate("date", seg.start, seg._end, date2, " "))  --2020/2/4
yield(Candidate("date", seg.start, seg._end, os.date("%Y-%m-%d"), " "))  --2020-02-04
yield(Candidate("date", seg.start, seg._end, os.date("%Y%m%d"), " ")) --20200204
yield(Candidate("date", seg.start, seg._end, date5, " ")) --2020年2月4日

yield(Candidate("date", seg.start, seg._end, os.date("%m/%d"), " "))  --02/04
yield(Candidate("date", seg.start, seg._end, date9, " "))  --2/4
yield(Candidate("date", seg.start, seg._end, os.date("%m-%d"), " "))  --02-04
yield(Candidate("date", seg.start, seg._end, os.date("%m%d"), " ")) --0204
yield(Candidate("date", seg.start, seg._end, date10, " "))  --2月4日
yield(Candidate("date", seg.start, seg._end, date13, " "))  --九月十五日

yield(Candidate("date", seg.start, seg._end, date11, " "))  --二〇二〇年九月十五日
yield(Candidate("date", seg.start, seg._end, date12, " "))  --农历庚子(鼠)年七月廿八
yield(Candidate("date", seg.start, seg._end, date14, " "))  --农历七月廿八
end

if (input == "nyr") then
yield(Candidate("dateymd", seg.start, seg._end, os.date("%Y/%m/%d"), " "))  --2020/02/04
yield(Candidate("dateymd", seg.start, seg._end, date2, " "))  --2020/2/4
yield(Candidate("dateymd", seg.start, seg._end, os.date("%Y%m%d"), " ")) --20200204
yield(Candidate("dateymd", seg.start, seg._end, os.date("%Y-%m-%d"), " "))  --2020-02-04
yield(Candidate("dateymd", seg.start, seg._end, date5, " ")) --2020年2月4日

yield(Candidate("dateymd", seg.start, seg._end, date11, " "))  --二〇二〇年九月十五日
yield(Candidate("dateymd", seg.start, seg._end, date12, " "))  --农历庚子(鼠)年七月廿八
end

if (input == "yr") then
yield(Candidate("datemd", seg.start, seg._end, os.date("%m/%d"), " "))  --02/04
yield(Candidate("datemd", seg.start, seg._end, date9, " "))  --2/4
yield(Candidate("datemd", seg.start, seg._end, os.date("%m%d"), " ")) --0204
yield(Candidate("datemd", seg.start, seg._end, os.date("%m-%d"), " "))  --02-04
yield(Candidate("datemd", seg.start, seg._end, date10, " "))  --2月4日

yield(Candidate("datemd", seg.start, seg._end, date13, " "))  --九月十五日
yield(Candidate("datemd", seg.start, seg._end, "农历"..date14, " "))  --农历七月廿八

end

if (input == "nl") then
yield(Candidate("Ndate", seg.start, seg._end, date14, " "))  --农历七月廿八
yield(Candidate("Ndate", seg.start, seg._end, date12, " "))  --农历庚子(鼠)年七月廿八
end

if (input == "now") then
yield(Candidate("datetime", seg.start, seg._end, os.date("%Y/%m/%d %H:%M:%S"), " "))  --2020/02/04
yield(Candidate("datetime", seg.start, seg._end, os.date("%Y%m%d_%H%M%S"), " "))  --2020/02/04
yield(Candidate("datetime", seg.start, seg._end, date5.." "..os.date("%H点%M分%S秒"), " ")) --2020年2月4日

-------------------------
--yield(Candidate("date", seg.start, seg._end, date11, " "))  --二〇二〇年九月十五日
--yield(Candidate("date", seg.start, seg._end, date13, " "))  --九月十五日
--yield(Candidate("date", seg.start, seg._end, os.date("%Y/%m/%d"), " "))  --2020/02/04
--yield(Candidate("date", seg.start, seg._end, date2, " "))  --2020/2/4
--yield(Candidate("date", seg.start, seg._end, os.date("%Y-%m-%d"), " "))  --2020-02-04
--yield(Candidate("date", seg.start, seg._end, date4, " "))  --2020-2-4
--yield(Candidate("date", seg.start, seg._end, date5, " ")) --2020年2月4日
--
--yield(Candidate("date", seg.start, seg._end, os.date("%m/%d"), " "))  --02/04
--yield(Candidate("date", seg.start, seg._end, os.date("%m-%d"), " "))  --02-04
--yield(Candidate("date", seg.start, seg._end, date9, " "))  --2/4
--yield(Candidate("date", seg.start, seg._end, date10, " "))  --2月4日
--yield(Candidate("date", seg.start, seg._end, date12, " "))  --农历庚子(鼠)年七月廿八
--yield(Candidate("date", seg.start, seg._end, os.date("%Y%m%d"), " ")) --20200204
--yield(Candidate("date", seg.start, seg._end, os.date("%m%d"), " ")) --0204
end

if (input == "/1") then
-- Candidate(type, start, end, text, comment)
if (word == 0) then
word=1
yield(Candidate("date", seg.start, seg._end, "单字优先模式启用", " 配置"))
else
word=0
yield(Candidate("date", seg.start, seg._end, "单字优先模式关闭", " 配置"))
end
end
--if (input == "time" or input == "iuju" or input == "sj" or input == "dqsj") then
if (input == "time" or input == "sj" ) then
yield(Candidate("time", seg.start, seg._end, os.date("%H:%M"), " "))
yield(Candidate("time", seg.start, seg._end, os.date("%H点%M分"), " "))

yield(Candidate("time", seg.start, seg._end, os.date("%H:%M:%S"), " "))
yield(Candidate("time", seg.start, seg._end, os.date("%H点%M分%S秒"), " "))

yield(Candidate("time", seg.start, seg._end, os.date("%H%M%S"), " "))
end


if (input == "week" or input == "xq") then
if (os.date("%w") == "0") then
weekstr = "日"
end
if (os.date("%w") == "1") then
weekstr = "一"
end
if (os.date("%w") == "2") then
weekstr = "二"
end
if (os.date("%w") == "3") then
weekstr = "三"
end
if (os.date("%w") == "4") then
weekstr = "四"
end
if (os.date("%w") == "5") then
weekstr = "五"
end
if (os.date("%w") == "6") then
weekstr = "六"
end
yield(Candidate("week", seg.start, seg._end, os.date("星期")..weekstr,""))
yield(Candidate("week", seg.start, seg._end, os.date("周")..weekstr,""))
end

end


--- charset filter
charset = {
["CJK"] = { first = 0x4e00, last = 0x9fff },
["CJK-A"] = { first = 0x3400, last = 0x4dbf },
["CJK-B"] = { first = 0x20000, last = 0x2a6dd },
["CJK-C"] = { first = 0x2a700, last = 0x2b734 },
["CJK-D"] = { first = 0x2b740, last = 0x2b81d },
["CJK-E"] = { first = 0x2b820, last = 0x2cea1 },
["CJK-F"] = { first = 0x2ceb0, last = 0x2ebe0 },
["CJK-G"] = { first = 0x30000, last = 0x3134a },
["拉丁补"] = { first = 0x0080, last = 0x00ff },
["拉丁语"] = { first = 0x0000, last = 0x007f },
["私用区"] = { first = 0xe000, last = 0xf8ff },
["私用补"] = { first = 0x100000, last = 0x10ffff },
["符号和象形文字扩展-A"] = { first = 0x1fa70, last = 0x1faff },
["中日韩兼容表意文字增补"] = { first = 0x2f800, last = 0x2fa1f },
["楔形文字数字和标点符号"] = { first = 0x12400, last = 0x1247f },
["高加索阿尔巴尼亚语言"] = { first = 0x10530, last = 0x1056f },
["统一加拿大原住民音节扩展"] = { first = 0x18b0, last = 0x18ff },
["补私用-A"] = { first = 0xf0000, last = 0xffff },
["补充符号和象形文字"] = { first = 0x1f900, last = 0x1f9ff },
["阿拉伯字母数字符号"] = { first = 0x1ee00, last = 0x1eeff },
["杂项符号和象形文字"] = { first = 0x1f300, last = 0x1f5ff },
["日文假名扩展-A"] = { first = 0x1b100, last = 0x1b12f },
["安纳托利亚象形文字"] = { first = 0x14400, last = 0x1467f },
["表意符号和标点符号"] = { first = 0x16fe0, last = 0x16fff },
["线形文字B表意文字"] = { first = 0x10080, last = 0x100ff },
["阿拉伯语表现形式-A"] = { first = 0xfb50, last = 0xfdff },
["方框绘制字符(制表符)"] = { first = 0x2500, last = 0x257f },
["札那巴札尔方形字母"] = { first = 0x11a00, last = 0x11a4f },
["阿拉伯语表现形式-B"] = { first = 0xfe70, last = 0xfeff },
["斐斯托斯圆盘古文字"] = { first = 0x101d0, last = 0x101ff },
["埃及圣书体格式控制"] = { first = 0x13430, last = 0x1343f },
["奥斯曼西亚克数字"] = { first = 0x1ed00, last = 0x1ed4f },
["小型日文假名扩展"] = { first = 0x1b130, last = 0x1b16f },
["带圈表意文字补充"] = { first = 0x1f200, last = 0x1f2ff },
["带圈字母数字补充"] = { first = 0x1f100, last = 0x1f1ff },
["格拉哥里字母增补"] = { first = 0x1e000, last = 0x1e02f },
["尼亚坑普阿绰苗文"] = { first = 0x1e100, last = 0x1e14f },
["统一加拿大原住民音节"] = { first = 0x1400, last = 0x167f },
["中日韩带圈字符及月份"] = { first = 0x3200, last = 0x32ff },
["哈乃斐罗兴亚文字"] = { first = 0x10d00, last = 0x10d3f },
["中日韩符号和标点符号"] = { first = 0x3000, last = 0x303f },
["阿姆哈拉语扩展-A"] = { first = 0xab00, last = 0xab2f },
["马萨拉姆贡德文字"] = { first = 0x11d00, last = 0x11d5f },
["变化选择器补充"] = { first = 0xe0100, last = 0xe01ef },
["速记格式控制符"] = { first = 0x1bca0, last = 0x1bcaf },
["追加箭头-C"] = { first = 0x1f800, last = 0x1f8ff },
["拜占庭音乐符号"] = { first = 0x1d000, last = 0x1d0ff },
["交通和地图符号"] = { first = 0x1f680, last = 0x1f6ff },
["古希腊音乐记号"] = { first = 0x1d200, last = 0x1d24f },
["字母和数字符号"] = { first = 0x1d400, last = 0x1d7ff },
["印度西亚格数字"] = { first = 0x1ec70, last = 0x1ecbf },
["结合符号的变音符号"] = { first = 0x20d0, last = 0x20ff },
["中日韩汉字部首补充"] = { first = 0x2e80, last = 0x2eff },
["古北部阿拉伯语"] = { first = 0x10a80, last = 0x10a9f },
["古南部阿拉伯语"] = { first = 0x10a60, last = 0x10a7f },
["麦罗埃文草体字"] = { first = 0x109a0, last = 0x109ff },
["奥斯曼亚字母"] = { first = 0x10480, last = 0x104af },
["塞浦路斯语音节"] = { first = 0x10800, last = 0x1083f },
["爱尔巴桑字母"] = { first = 0x10500, last = 0x1052f },
["德瑟雷特字母"] = { first = 0x10400, last = 0x1044f },
["杂项数学符号-A"] = { first = 0x27c0, last = 0x27ef },
["杂项数学符号-B"] = { first = 0x2980, last = 0x29ff },
["科普特闰余数字"] = { first = 0x102e0, last = 0x102ff },
["西里尔文扩展-B"] = { first = 0xa640, last = 0xa69f },
["西里尔文扩展-A"] = { first = 0x2de0, last = 0x2dff },
["韩文字母扩展-A"] = { first = 0xa960, last = 0xa97f },
["中日韩兼容表意文字"] = { first = 0xf900, last = 0xfaff },
["韩文字母扩展-B"] = { first = 0xd7b0, last = 0xd7ff },
["梅德法伊德林文"] = { first = 0x16e40, last = 0x16e9f },
["线形文字B音节"] = { first = 0x10000, last = 0x1007f },
["巴姆穆文字增补"] = { first = 0x16800, last = 0x16a3f },
["𑙠蒙古语增补"] = { first = 0x11660, last = 0x1167f },
["古僧伽罗文数字"] = { first = 0x111e0, last = 0x111ff },
["西里尔文扩展-C"] = { first = 0x1c80, last = 0x1c8f },
["麦罗埃象形文字"] = { first = 0x10980, last = 0x1099f },
["日文假名补充"] = { first = 0x1b000, last = 0x1b0ff },
["阿德拉姆字母"] = { first = 0x1e900, last = 0x1e95f },
["门德基卡库文"] = { first = 0x1e800, last = 0x1e8df },
["萨顿书写符号"] = { first = 0x1d800, last = 0x1daaf },
["几何图形扩展"] = { first = 0x1f780, last = 0x1f7ff },
["表意文字描述字符"] = { first = 0x2ff0, last = 0x2fff },
["巴尔米拉字母"] = { first = 0x10860, last = 0x1087f },
["拉丁语扩展-A"] = { first = 0x0100, last = 0x017f },
["乌加里特语"] = { first = 0x10380, last = 0x1039f },
["古代楔形文字"] = { first = 0x12480, last = 0x1254f },
["易经六十四卦符号"] = { first = 0x4dc0, last = 0x4dff },
["萧伯纳字母"] = { first = 0x10450, last = 0x1047f },
["泰米尔文增补"] = { first = 0x11fc0, last = 0x11fff },
["贡贾拉贡德文"] = { first = 0x11d60, last = 0x11daf },
["拉丁语扩展-B"] = { first = 0x0180, last = 0x024f },
["欧塞奇字母"] = { first = 0x104b0, last = 0x104ff },
["拉丁语扩展-D"] = { first = 0xa720, last = 0xa7ff },
["希腊语和科普特语"] = { first = 0x0370, last = 0x03ff },
["结合变音符号扩展"] = { first = 0x1ab0, last = 0x1aff },
["缅甸语扩展-B"] = { first = 0xa9e0, last = 0xa9ff },
["索拉僧平文字"] = { first = 0x110d0, last = 0x110ff },
["鲁米数字符号"] = { first = 0x10e60, last = 0x10e7f },
["线性文字A"] = { first = 0x10600, last = 0x1077f },
["古匈牙利字母"] = { first = 0x10c80, last = 0x10cff },
["阿拉伯语扩展-A"] = { first = 0x08a0, last = 0x08ff },
["常用印度数字形式"] = { first = 0xa830, last = 0xa83f },
["诗篇巴列维文"] = { first = 0x10b80, last = 0x10baf },
["碑刻巴列维文"] = { first = 0x10b60, last = 0x10b7f },
["碑刻帕提亚文"] = { first = 0x10b40, last = 0x10b5f },
["阿维斯陀字母"] = { first = 0x10b00, last = 0x10b3f },
["结合变音标记增补"] = { first = 0x1dc0, last = 0x1dff },
["帝国阿拉姆語"] = { first = 0x10840, last = 0x1085f },
["古意大利字母"] = { first = 0x10300, last = 0x1032f },
["拉丁语扩展-C"] = { first = 0x2c60, last = 0x2c7f },
["缅甸语扩展-A"] = { first = 0xaa60, last = 0xaa7f },
["拉丁文扩展-E"] = { first = 0xab30, last = 0xab6f },
["多米诺骨牌"] = { first = 0x1f030, last = 0x1f09f },
["太玄经符号"] = { first = 0x1d300, last = 0x1d35f },
["炼金术符号"] = { first = 0x1f700, last = 0x1f77f },
["杜普雷速记"] = { first = 0x1bc00, last = 0x1bc9f },
["西夏文部首"] = { first = 0x18800, last = 0x18aff },
["拉丁语扩展附加"] = { first = 0x1e00, last = 0x1eff },
["封闭式字母数字"] = { first = 0x2460, last = 0x24ff },
["补充箭头-A"] = { first = 0x27f0, last = 0x27ff },
["国际音标扩展"] = { first = 0x0250, last = 0x02af },
["间距修饰字符"] = { first = 0x02b0, last = 0x02ff },
["组合变音标记"] = { first = 0x0300, last = 0x036f },
["补充箭头-B"] = { first = 0x2900, last = 0x297f },
["补充数学运算符"] = { first = 0x2a00, last = 0x2aff },
["其他符号和箭头"] = { first = 0x2b00, last = 0x2bff },
["格鲁吉亚文增补"] = { first = 0x2d00, last = 0x2d2f },
["阿姆哈拉语扩展"] = { first = 0x2d80, last = 0x2ddf },
["中日韩汉语笔画"] = { first = 0x31c0, last = 0x31ef },
["腓尼基字母"] = { first = 0x10900, last = 0x1091f },
["曼尼普尔语扩展"] = { first = 0xaae0, last = 0xaaff },
["全角和半角字符"] = { first = 0xff00, last = 0xffef },
["爱琴海数字"] = { first = 0x10100, last = 0x1013f },
["古希腊数字"] = { first = 0x10140, last = 0x1018f },
["古罗马符号"] = { first = 0x10190, last = 0x101cf },
["卡里亚字母"] = { first = 0x102a0, last = 0x102df },
["古彼尔姆文"] = { first = 0x10350, last = 0x1037f },
["古波斯语"] = { first = 0x103a0, last = 0x103df },
["纳巴泰字母"] = { first = 0x10880, last = 0x108af },
["中日韩兼容形式"] = { first = 0xfe30, last = 0xfe4f },
["哈特兰字母"] = { first = 0x108e0, last = 0x108ff },
["古代突厥語"] = { first = 0x10c00, last = 0x10c4f },
["古粟特字母"] = { first = 0x10f00, last = 0x10f2f },
["以利买字母"] = { first = 0x10fe0, last = 0x10fff },
["马哈雅尼文"] = { first = 0x11150, last = 0x1117f },
["库达瓦迪文"] = { first = 0x112b0, last = 0x112ff },
["瓦兰齐地文"] = { first = 0x118a0, last = 0x118ff },
["索永布字母"] = { first = 0x11a50, last = 0x11aaf },
["拜克舒基文"] = { first = 0x11c00, last = 0x11c6f },
["埃及圣书体"] = { first = 0x13000, last = 0x1342f },
["巴萨哇文字"] = { first = 0x16ad0, last = 0x16aff },
["柏格理苗文"] = { first = 0x16f00, last = 0x16f9f },
["阿姆哈拉语增补"] = { first = 0x1380, last = 0x139f },
["提尔胡塔文"] = { first = 0x11480, last = 0x114df },
["格鲁吉亚文扩展"] = { first = 0x1c90, last = 0x1cbf },
["表情符号"] = { first = 0x1f600, last = 0x1f64f },
["玛雅数字"] = { first = 0x1d2e0, last = 0x1d2ff },
["装饰符号"] = { first = 0x1f650, last = 0x1f67f },
["音乐符号"] = { first = 0x1d100, last = 0x1d1ff },
["象棋符号"] = { first = 0x1fa00, last = 0x1fa6f },

["文乔字母"] = { first = 0x1e2c0, last = 0x1e2ff },
["杂项技术符号"] = { first = 0x2300, last = 0x23ff },
["数字形式符号"] = { first = 0x2150, last = 0x218f },
["悉昙文字"] = { first = 0x11580, last = 0x115ff },
["切罗基语增补"] = { first = 0xab70, last = 0xabbf },
["西里尔文增补"] = { first = 0x0500, last = 0x052f },
["塔克里文"] = { first = 0x11680, last = 0x116cf },
["补充标点符号"] = { first = 0x2e00, last = 0x2e7f },
["阿洪姆语"] = { first = 0x11700, last = 0x1173f },
["小型变体形式"] = { first = 0xfe50, last = 0xfe6f },
["阿拉伯语增补"] = { first = 0x0750, last = 0x077f },
["索拉什特拉语"] = { first = 0xa880, last = 0xa8df },
["西非书面文字"] = { first = 0x07c0, last = 0x07ff },
["撒玛利亚字母"] = { first = 0x0800, last = 0x083f },
["婆罗米文"] = { first = 0x11000, last = 0x1107f },
["叙利亚文增补"] = { first = 0x0860, last = 0x086f },
["粟特字母"] = { first = 0x10f30, last = 0x10f6f },
["多格拉语"] = { first = 0x11800, last = 0x1184f },
["桑塔利语字母"] = { first = 0x1c50, last = 0x1c7f },
["南迪城文"] = { first = 0x119a0, last = 0x119ff },
["吕基亚语"] = { first = 0x10280, last = 0x1029f },
["包钦豪文"] = { first = 0x11ac0, last = 0x11aff },
["光学字符识别"] = { first = 0x2440, last = 0x245f },
["马拉雅拉姆语"] = { first = 0x0d00, last = 0x0d7f },
["吕底亚语"] = { first = 0x10920, last = 0x1093f },
["望加锡文"] = { first = 0x11ee0, last = 0x11eff },
["国际音标扩展"] = { first = 0x1d00, last = 0x1d7f },
["国际音标增补"] = { first = 0x1d80, last = 0x1dbf },
["摩尼字母"] = { first = 0x10ac0, last = 0x10aff },
["楔形文字"] = { first = 0x12000, last = 0x123ff },
["格拉哥里字母"] = { first = 0x2c00, last = 0x2c5f },
["塔格巴努亚文"] = { first = 0x1760, last = 0x177f },
["哥特字母"] = { first = 0x10330, last = 0x1034f },
["帕哈苗文"] = { first = 0x16b00, last = 0x16b8f },
["一般标点符号"] = { first = 0x2000, last = 0x206f },
["注音符号扩展"] = { first = 0x31a0, last = 0x31bf },
["韩文兼容字母"] = { first = 0x3130, last = 0x318f },
["字母连写形式"] = { first = 0xfb00, last = 0xfb4f },
["组合用半符号"] = { first = 0xfe20, last = 0xfe2f },
["查克马语"] = { first = 0x11100, last = 0x1114f },
["夏拉达文"] = { first = 0x11180, last = 0x111df },
["木尔坦文"] = { first = 0x11280, last = 0x112af },
["古兰塔文"] = { first = 0x11300, last = 0x1137f },
["尼瓦尔语"] = { first = 0x11400, last = 0x1147f },
["扑克牌"] = { first = 0x1f0a0, last = 0x1f0ff },
["麻将牌"] = { first = 0x1f000, last = 0x1f02f },
["凯提文"] = { first = 0x11080, last = 0x110cf },
["日文平假名"] = { first = 0x3040, last = 0x309f },
["亚美尼亚语"] = { first = 0x0530, last = 0x058f },
["上标和下标"] = { first = 0x2070, last = 0x209f },
["提非纳字母"] = { first = 0x2d30, last = 0x2d7f },
["古吉拉特語"] = { first = 0x0a80, last = 0x0aff },
["天城文扩展"] = { first = 0xa8e0, last = 0xa8ff },
["巽他文增补"] = { first = 0x1cc0, last = 0x1ccf },
["格鲁吉亚语"] = { first = 0x10a0, last = 0x10ff },
["阿姆哈拉语"] = { first = 0x1200, last = 0x137f },
["希腊语扩展"] = { first = 0x1f00, last = 0x1fff },
["类字母符号"] = { first = 0x2100, last = 0x214f },
["和卓文"] = { first = 0x11200, last = 0x1124f },
["中日韩兼容"] = { first = 0x3300, last = 0x33ff },
["佉卢文"] = { first = 0x10a00, last = 0x10a5f },
["片假名扩展"] = { first = 0x31f0, last = 0x31ff },
["声调修饰符"] = { first = 0xa700, last = 0xa71f },
["西夏文"] = { first = 0x17000, last = 0x187ff },
["玛钦文"] = { first = 0x11c70, last = 0x11cbf },
["数学运算符"] = { first = 0x2200, last = 0x22ff },
["日文片假名"] = { first = 0x30a0, last = 0x30ff },
["曼尼普尔语"] = { first = 0xabc0, last = 0xabff },
["锡尔赫特文"] = { first = 0xa800, last = 0xa82f },
["默禄文"] = { first = 0x16a40, last = 0x16a6f },
["变体选择器"] = { first = 0xfe00, last = 0xfe0f },
["莫迪文"] = { first = 0x11600, last = 0x1165f },
["算筹"] = { first = 0x1d360, last = 0x1d37f },
["女书"] = { first = 0x1b170, last = 0x1b2ff },
["标签"] = { first = 0xe0000, last = 0xe007f },
["古木基文"] = { first = 0x0a00, last = 0x0a7f },
["货币符号"] = { first = 0x20a0, last = 0x20cf },
["吠陀扩展"] = { first = 0x1cd0, last = 0x1cff },
["彝族部首"] = { first = 0xa490, last = 0xa4cf },
["箭头符号"] = { first = 0x2190, last = 0x21ff },
["巴塔克语"] = { first = 0x1bc0, last = 0x1bff },
["彝族音节"] = { first = 0xa000, last = 0xa48f },
["康熙部首"] = { first = 0x2f00, last = 0x2fdf },
["西里尔文"] = { first = 0x0400, last = 0x04ff },
["希伯来语"] = { first = 0x0590, last = 0x05ff },
["阿拉伯语"] = { first = 0x0600, last = 0x06ff },
["巴姆穆语"] = { first = 0xa6a0, last = 0xa6ff },
["叙利亚文"] = { first = 0x0700, last = 0x074f },
["它拿字母"] = { first = 0x0780, last = 0x07bf },
["奥里亚语"] = { first = 0x0b00, last = 0x0b7f },
["孟加拉语"] = { first = 0x0980, last = 0x09ff },
["泰米尔语"] = { first = 0x0b80, last = 0x0bff },
["泰卢固语"] = { first = 0x0c00, last = 0x0c7f },
["卡纳达语"] = { first = 0x0c80, last = 0x0cff },
["僧伽罗语"] = { first = 0x0d80, last = 0x0dff },
["韩文字母"] = { first = 0x1100, last = 0x11ff },
["切罗基语"] = { first = 0x13a0, last = 0x13ff },
["高棉符号"] = { first = 0x19e0, last = 0x19ff },
["汉文训读"] = { first = 0x3190, last = 0x319f },
["竖排形式"] = { first = 0xfe10, last = 0xfe1f },
["特殊字符"] = { first = 0xfff0, last = 0xffff },

["八思巴字"] = { first = 0xa840, last = 0xa87f },
["德宏傣文"] = { first = 0x1950, last = 0x197f },
["科普特文"] = { first = 0x2c80, last = 0x2cff },
["克耶字母"] = { first = 0xa900, last = 0xa92f },
["装饰符号"] = { first = 0x2700, last = 0x27bf },
["杂项符号"] = { first = 0x2600, last = 0x26ff },
["布希德文"] = { first = 0x1740, last = 0x175f },
["哈努诺文"] = { first = 0x1720, last = 0x173f },
["几何形状"] = { first = 0x25a0, last = 0x25ff },
["韩文音节"] = { first = 0xac00, last = 0xd7af },
["方块元素"] = { first = 0x2580, last = 0x259f },
["他加禄语"] = { first = 0x1700, last = 0x171f },
["卢恩字母"] = { first = 0x16a0, last = 0x16ff },
["控制图片"] = { first = 0x2400, last = 0x243f },
["欧甘字母"] = { first = 0x1680, last = 0x169f },
["绒巴文"] = { first = 0x1c00, last = 0x1c4f },
["拉让语"] = { first = 0xa930, last = 0xa95f },
["曼达文"] = { first = 0x0840, last = 0x085f },
["巽他语"] = { first = 0x1b80, last = 0x1bbf },
["瓦伊语"] = { first = 0xa500, last = 0xa63f },
["傣仂语"] = { first = 0x1980, last = 0x19df },
["林布语"] = { first = 0x1900, last = 0x194f },
["巴厘语"] = { first = 0x1b00, last = 0x1b7f },
["蒙古语"] = { first = 0x1800, last = 0x18af },
["高棉语"] = { first = 0x1780, last = 0x17ff },
["老傣文"] = { first = 0x1a20, last = 0x1aaf },
["缅甸语"] = { first = 0x1000, last = 0x109f },
["老挝语"] = { first = 0x0e80, last = 0x0eff },
["傈僳语"] = { first = 0xa4d0, last = 0xa4ff },
["爪哇语"] = { first = 0xa980, last = 0xa9df },
["布吉语"] = { first = 0x1a00, last = 0x1a1f },
["占语"] = { first = 0xaa00, last = 0xaa5f },
["梵文"] = { first = 0x0900, last = 0x097f },
["傣文"] = { first = 0xaa80, last = 0xaadf },
["注音"] = { first = 0x3100, last = 0x312f },
["高位专用替代"] = { first = 0xdb80, last = 0xdbff },
["藏文"] = { first = 0x0f00, last = 0x0fff },
["泰语"] = { first = 0x0e00, last = 0x0e7f },
["盲文"] = { first = 0x2800, last = 0x28ff },
["低位替代区"] = { first = 0xdc00, last = 0xdfff },
["高位替代区"] = { first = 0xd800, last = 0xdb7f },
["Compat"] = { first = 0x2F800, last = 0x2FA1F } }


function exists(single_filter, text)
for i in utf8.codes(text) do
local c = utf8.codepoint(text, i)
if (not single_filter(c)) then
return false
end
end
return true
end

function is_charset(s)
return function (c)
return c >= charset[s].first and c <= charset[s].last
end
end

(2)将文件名改为remi.lua,复制到Rime目录下(用户文件夹)
(3)修改clover.custom.yaml (或者clover.schema.yaml)
在“engine”模块的“translators”模块里,添加一行- lua_translator@datetime_translator

patch:
  engine:
    translators:
      - lua_translator@datetime_translator

(4)重新部署

PS:原方法来自于:http://tieba.baidu.com/p/1923873073?red_tag=t1647137642
我只是在其基础上根据自己的需求做了一些修改,亲测有效(小狼毫版本:0.14.3)(2020/09/16 01:42:47)

设定默认英文输入

我添加了四叶草输入法,原来使用的是明月输入法,配置有默认输入是英文。但该配置对于四叶草没有生效,不知道是不支持还是说要其他的设定。谢谢

输入乱码

Screenshot from 2020-10-06 11-35-05
如图,在输入方案,四叶草前面那个"豆腐块"是啥?图标吗?是系统缺少字体或图标吗?需要安装啥?

Screenshot from 2020-10-06 11-24-43
还有如图,比如想打“花园”,刚打一个花,候选词就出“豆腐块”,这是什么问题?安装了“花园明朝”字体(网上搜的,说rime的utf-8字体集比较大,系统没有就出豆腐块,装花园明朝就可以,我装了还这样)

怎么修改候选词语的字体大小啊? 不懂rime 自己修改了,不成功

我自己这么修改了,重新部署也不行,请教下大家怎么弄?

xtcc@xtccarch:~/.local/share/fcitx5/rime $ cat default.custom.yaml 130 ↵
patch:
"menu/page_size": 9
"style/font_point": 30
schema_list:
- schema: clover%

解释

我修改的page_size 成功了,只有这个候选字体大小不成功。

环境 :

archlinux fcitx5

自定义词库的use_preset_vocabulary该如何设置?

RIME官方文档中,自定义词库大都会加入use_preset_vocabulary: true,也就是使用官方的「八股文」,这样自定义词库的码表就只要输入第一列词汇文本即可,而不必写编码和使用频次,这样比较方便。

但四叶草已经撇开八股文,而自创了clover.base.dict.yaml 和 clover.phase.dict.yaml,此时我若也想在自定义词库中只写第一列词汇而不写编码和频率,那么我该如何设置use_preset_vocabulary?若设置为true会意味着什么?

安装后无法输入中文

如题,使用fcitx-rime安装没有问题。显示使用了该方案,但是默认没有候选框,直接输出英文字母。尝试多种快捷键仍然无效。

切换应用时允许默认英文模式

使用 rime-cloverpinyin 时,切换不同应用后中英文输入模式没有保存,会默认变为中文模式。我已尝试过在 fcitx5 的配置中设置 Share Input State: All,但是没有效果。请问能否增加对此的支持呢?

环境:
Manjaro latest
fcitx5 0.0.0.20200909.1-1
rime-cloverpinyin 1.1.3-1

关闭rime的快捷键

有时候会和其他软件的快捷键有冲突,然后找了一圈发现是和rime的快捷键起冲突了

在deepin下有点玄学,不知道是不是我太菜哪里做错了

deepin20 fcitx-rime
昨天搞很久都没成功用不了,试过作者分享的clover.schema-build-1.1.4、clover.schema-1.1.4、我在win10下部署过的改为小鹤双拼的配置、在win10下同步的配置,以上试过直接复制过去、先全删掉原有再复制过去。基本出现的是在方案里显示的是 clover 不是 四叶草简体拼音 ,结果就是不能输入中文
今天不死心又尝试一遍,在尝试删除原有文件再把我在win10下的配置文件放进去时,竟然能用了,虽然部署有报错,看了日志文件,实际也不影响使用
E1003 19:51:53.710574 16123 config_compiler.cc:428] resource could not be loaded: key_bindings
E1003 19:51:53.710602 16123 config_compiler.cc:536] unresolved dependency: Patch(key_bindings:/emacs_editing)
E1003 19:51:53.710623 16123 config_compiler.cc:536] unresolved dependency: PendingChild(clover.schema:/key_binder/bindings)
E1003 19:51:53.710641 16123 config_compiler.cc:536] unresolved dependency: PendingChild(clover.schema:/key_binder)
E1003 19:51:53.710657 16123 config_component.cc:250] error building config: clover.schema
E1003 19:51:53.880098 16123 deployment_tasks.cc:319] Error updating schema: nonexistent file '/home/qianqian/.config/fcitx/rime/emoji.schema.yaml'.

其实在几个星期前就试过deepin20装rime,fcitx下选择不了rime,fcitx直接奔溃,而在ibus下是在deepin全家桶不能输入中文

按照配置方法完成配置之后无法输中文

系统是Gentoo
框架是fcitx 4.2.9.5
用户资料文件夹在~/.config/fcitx/rime
安装方式是使用打包好的二进制文件:clover.schema-1.1.4
default.custom.yaml文件内容:
image
前提是rime自带的输入方案都能用

个别字词无法优先显示

一边像是按l或liao时 首选项不是了而是聊等其他字
而且反复输入数十次都无法改变其顺位到前列 这个似乎是字的权重问题? 有办法修改吗?
另一边像是输入lue时无法打出略 必须按lve才行
这个是模糊拼音相关的? 该如何修改添加这类选项

影响的字词很少但不少使用频率不低 希望有方法可以修改
或者说能否实现sougou的制定字词固定首选项的功能?

建议:拆分clover.base词库

可以将 clover.base 词库按照字符集拆分成 clover.base-gb2312,clover.base-gbk 和 clover.base-extra。

clover.base-gb2312 仅包含字符集为 gb2312 的汉字。

clover.base-gbk 包含字符集为 gbk 的汉字。

clover.base-extra 用于添加一些常用的生僻字。

好处:可以让用户根据自己的需要使用不同的词库,避免 rime 生僻字过滤组件 charset_filter 带来的问题,如部分 emoji 表情无法输入,同时可以降低输入法的资源占用。

有错别字

输入blll,候选项有
1 荜路蓝缕
2 筚路蓝缕
3 筚路褴褛
4 荜露蓝蒌
只有第2项筚路蓝缕是正确的,四选一,有一定难度😄️

请问如何设置为默认英文输入

在luna_pinyin中给出的方案是
patch: "switches/@0/reset": 1 #表示将 switcher 列表中的第一个元素(即 ascii_mode 开关)的初始值重设为状态1(即「英文」)。
用在clover中似乎效果是默认繁体输入

四叶草没有出现在列表中

解压了clover.schema-build-1.1.4.zip到rime下,yay安装了rime-cloverpinyin-1.1.3-1 重新部署后没有出现四叶草输入法

请问如何彻底关闭emoji

请问如何彻底关掉emoji,我不需要调整emoji的优先级,而是完全不打算看到任何emoji,在输入过程中,这东西太降低效率了,找一个词要翻(就敲fan这个词我都得翻两页)很多页。

在此先谢过大佬了。

请教,能实现简拼和混拼吗?

目前是全拼方案,声母和韵母都要输入完整才能显示汉字,sm就不能显示汉字“什么”,sme也是英文字母,能否实现声母和声母,简拼显示词组, 声母,声母韵母组合这样的混拼输入。谢谢你

可否加入中英混合输入?

偶然发现的,马上star一个。
我是在macos平台上使用的,加上default.custom.yaml和squirrel.custom.yaml后完成皮肤配色和横盘候选词。

中文输入真的是很流畅,比我之前的配置还要准确一些,只不过在一些词的输入上还是差点意思。比如输入“办到的”,出来的是“半岛的”,直到完成第一次输入。

另外,没有中英文混合输入的话,有的时候确实是不够方便,比如有时候需要输入iOS或者macOS,就必须先完成中文输入再按一下shift键来输入英文。在其他人的配置方案中,通常是使用luna_pinyin.cn_en.dict.yaml来完成英文、中英文混合短语和名词的输入的。不知道未来可不可以也加入类似的方案?

如何使用 /0 这种输入符号

我看设置里面有很多符号的设置,使用 / 打头的快捷键可以输入。但是我尝试了很多方法均不能实现。
输入了/之后都是直接上屏符号。
配置文件如下:

default.custom.yaml

patch:
  "menu/page_size": 8
  schema_list:
    - schema: clover

clover.custom.yaml

注释掉 "/": "/" 这一行也不行

patch:
  recognizer/patterns/punct: "^/([a-z]+|[0-9])$"
  punctuator:
    full_shape:
      " ": {commit: " "}
      "!": ""
      "\"": {pair: ["“", "”"]}
      "#": ""
      "$": ""
      "%": ""
      "&": ""
      "'": ""
      "(": ""
      ")": ""
      "*": "×"
      "+": ""
      ",": ""
      "-": ""
      .: ""
      "/": "/"
      ":": {commit: ":"}
      ";": ""
      "<": ""
      "=": ""
      ">": ""
      "?": ""
      "@": ""
      "[": ""
      "\\": ""
      "]": ""
      "^": "……"
      _: "——"
      "`": ""
      "{": ""
      "|": ""
      "}": ""
      "~": ""
    half_shape:
      "!": ""
      "\"": {pair: ["“", "”"]}
      "#": "#"
      "$": ""
      "%": "%"
      "&": "&"
      "'": ""
      "(": ""
      ")": ""
      "*": "×"
      "+": "+"
      ",": ""
      "-": "-"
      .: ""
      "/": "/"
      ":": {commit: ":"}
      ";": ""
      "<": ""
      "=": "="
      ">": ""
      "?": ""
      "@": "@"
      "[": ""
      "\\": ""
      "]": ""
      "^": "……"
      _: "——"
      "`": "·"
      "{": ""
      "|": ""
      "}": ""
      "~": ""

yay -S rime-cloverpinyin 失败

:: (1/2) 正在解析 SRCINFO: rime-symbols
:: (2/2) 正在解析 SRCINFO: rime-cloverpinyin
==> 错误: Cannot find the strip binary required for object file stripping.
下载源文件时出错: rime-symbols

部署失败

ubuntu 20.04 环境,ibus输入法框架,原本使用ibus-rime明月拼音简体输入法。
下载了clover.schema-1.1.3.zip压缩包,解压缩到 .config/ibus/rime文件夹下。修改 default.custom.yaml文件,添加了clover输入法。然后点击部署,出现提示,最后提示部署成功。
按下 ctrl+~ 选单,有 "clover" 选项,但是无法输入中文。
在 build 文件夹内,找不到部署生成的相关文件。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.