RIME输入法获取当前时间一

Rime输入法通过定义lua文件,可以实现获取当前时间日期的功能。

1.TIME

Rime是一款可以高度自定义的输入法,相关教程可以查看往期文章,关于时间获取是指输入一个指定关键字,输出当前时间,效果如下(我定义了time关键字):

实现如下:

①在用户文件夹中新建一个rime.lua文件加入如下代码

 time_translator = require("time")

②在用户文件夹下新建文件夹Lua,并新建文件time.lua(此处的文件名必需与上文require中的内容相同),加入如下lua代码:

 --lua语言中的注释用“--”
 local function translator(input, seg)
    if (input == "time") then         --关键字更改,你也可以用or语句定义多个关键字
       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秒"), " "))
    end
 end
 return translator

此处代码用lua语言编写而成,若有一定语言基础,根据自己的需求调整响应代码。

③在用户配置文件中开启(*.custom.yaml文件)

 #若你的配置文件中有engine/translator,则后面直接加入代码
     - lua_translator@time_translator
 #若你的配置文件中无engine/translator项,则加入
   engine/+:
     translators/+:
       - lua_translator@time_translator
 #此处@后面的名称必需与rime.lua文件中的定义名称一致

2.DATE

与time类似,只需修改lua文件中的实现代码即可,我定义的关键字是date,效果如下:

实现如下:①在rime.lua文件加入如下代码

 date_translator = require("date")

②在文件夹Lua中新建文件date.lua(此处的文件名必需与上文require中的内容相同),加入如下lua代码:

 --lua语言中的注释用“--”
 local function translator(input, seg)
    if (input == "date") then
 ------------------------------------------------------------------------------------
 --普通日期1,类似2022年01月02日
 date1=os.date("%Y年%m月%d日")
 date_y=os.date("%Y") --取年
 date_m=os.date("%m") --取月
 date_d=os.date("%d") --取日
 --yield(Candidate("date", seg.start, seg._end, date1, " "))
 ------------------------------------------------------------------------------------
 --普通日期2,类似2022年1月1日
 num_m=os.date("%m")+0
 num_m1=math.modf(num_m)
 num_d=os.date("%d")+0
 num_d1=math.modf(num_d)
 date2=os.date("%Y年")..tostring(num_m1).."月"..tostring(num_d1).."日"
 yield(Candidate("date", seg.start, seg._end, date2, " "))
 ------------------------------------------------------------------------------------
 --普通日期3,类似1月1日
 num_m=os.date("%m")+0
 num_m1=math.modf(num_m)
 num_d=os.date("%d")+0
 num_d1=math.modf(num_d)
 date3=tostring(num_m1).."月"..tostring(num_d1).."日"
 yield(Candidate("date", seg.start, seg._end, date3, " "))
 yield(Candidate("date", seg.start, seg._end, os.date("%Y/%m/%d"), " "))
 yield(Candidate("date", seg.start, seg._end, os.date("%Y-%m-%d"), " "))
 ------------------------------------------------------------------------------------
 --大写日期,类似二〇二〇年十一月二十六日
 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
 date4=date_y..date_m..date_d
 yield(Candidate("date", seg.start, seg._end, date4, " "))
 ------------------------------------------------------------------------------------
 --英文日期
     local date_d=os.date("%d")
     local date_m=os.date("%m")
     local date_y=os.date("%Y")
     local date_m1=""
     local date_m2=""
     if date_m=="01" then 
        date_m1="Jan."
        date_m2="January"
     end
     if date_m=="02" then 
        date_m1="Feb."
        date_m2="February"
     end
     if date_m=="03" then 
        date_m1="Mar."
        date_m2="March"
     end
     if date_m=="04" then 
        date_m1="Apr."
        date_m2="April"
     end
     if date_m=="05" then 
        date_m1="May."
        date_m2="May"
     end
     if date_m=="06" then 
        date_m1="Jun."
        date_m2="June"
     end
     if date_m=="07" then 
        date_m1="Jul."
        date_m2="July"
     end
     if date_m=="08" then 
        date_m1="Aug."
        date_m2="August"
     end
     if date_m=="09" then 
        date_m1="Sept."
        date_m2="September"
     end
     if date_m=="10" then 
        date_m1="Oct."
        date_m2="October"
     end
     if date_m=="11" then 
        date_m1="Nov."
        date_m2="November"
     end
     if date_m=="12" then 
        date_m1="Dec."
        date_m2="December"
     end
 ​
      if date_d=="0" then 
        symbal="st" 
      elseif date_d=="1" then
        symbal="nd" 
      elseif date_d=="2" then 
        symbal="rd" 
      else
        symbal="th"
      end
 date5=date_m1.." "..date_d..symbal..", "..date_y
 date6=date_m2.." "..date_d..symbal..", "..date_y
 ​
 yield(Candidate("date", seg.start, seg._end, date5, " "))
 yield(Candidate("date", seg.start, seg._end, date6, " "))
 yield(Candidate("date", seg.start, seg._end, os.date("%Y%m%d"), " "))
    end
 end
 ------------------------------------------------------------------------------------
 return translator

③在用户配置文件中开启(*.custom.yaml文件)

 #若你的配置文件中有engine/translator,则后面直接加入代码
     - lua_translator@date_translator
 #若你的配置文件中无engine/translator项,则加入
   engine/+:
     translators/+:
       - lua_translator@date_translator
 #此处@后面的名称必需与rime.lua文件中的定义名称一致

3.WEEK

与time类似,只需修改lua文件中的实现代码即可,我定义的关键字是week,效果如下:

实现如下:①在rime.lua文件加入如下代码

 week_translator = require("week")

②在

文件夹Lua中新建文件date.lua(此处的文件名必需与上文require中的内容相同),加入如下lua代码:

 --lua语言中的注释用“--”
 function translator(input, seg)
   if (input == "week") then
     local day_w=os.date("%w")
     local day_w1=""
     local day_w2=""
     local day_w3=""
     if day_w=="0" then 
       day_w1="星期日" 
       day_w2="Sunday" 
       day_w3="Sun." 
     end
     if day_w=="1" then
       day_w1="星期一" 
       day_w2="Monday" 
       day_w3="Mon." 
     end
     if day_w=="2" then
       day_w1="星期二" 
       day_w2="Tuesday" 
       day_w3="Tues." 
     end
     if day_w=="3" then 
       day_w1="星期三" 
       day_w2="Wednesday" 
       day_w3="Wed." 
     end
     if day_w=="4" then 
       day_w1="星期四" 
       day_w2="Thursday" 
       day_w3="Thur." 
     end
     if day_w=="5" then 
       day_w1="星期五"  
       day_w2="Friday" 
       day_w3="Fri." 
     end
     if day_w=="6" then 
       day_w1="星期六" 
       day_w2="Saturday" 
       day_w3="Sat." 
     end
     yield(Candidate("date", seg.start, seg._end, day_w1, " "))
     yield(Candidate("date", seg.start, seg._end, day_w2, " "))
     yield(Candidate("date", seg.start, seg._end, day_w3, " "))
     yield(Candidate("week", seg.start, seg._end, os.date("%w"),""))
   end
 end
 return translator

③在用户配置文件中开启(*.custom.yaml文件)

#若你的配置文件中有engine/translator,则后面直接加入代码
    - lua_translator@week_translator
#若你的配置文件中无engine/translator项,则加入
  engine/+:
    translators/+:
      - lua_translator@week_translator
#此处@后面的名称必需与rime.lua文件中的定义名称一致

以上配置文件的合集打包可在公众号获取。

参考:感谢Github项目网址作者的方案。

以上就是今天的内容,这篇文章能帮到你是我写作的意义所在,有任何问题可以评论或私信。当然,您的点赞与关注也是对我最大的支持与肯定,也是我继续写作的动力源泉。

了解更多教程可关注公众号

原文地址:https://blog.csdn.net/qq_43108090/article/details/122729631

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


1.github代码实践源代码是lua脚本语言,下载th之后运行thmain.lua-netTypevgg-savevgg_cifar10/-S0.0001,报错: 试看看安装lua:报错了,参考这篇文章:ubuntu18.04安装lua的步骤以及出现的问题_weixin_41355132的博客-CSDN博客问题解决,安装成功:情况并没有好转,出现相
此文为搬运帖,原帖地址https://www.cnblogs.com/zwywilliam/p/5999924.html前言在看了uwa之前发布的《Unity项目常见Lua解决方案性能比较》,决定动手写一篇关于lua+unity方案的性能优化文。整合lua是目前最强大的unity热更新方案,毕竟这是唯一可以支持ios热更新的办法。然而作
Rime输入法通过定义lua文件,可以实现获取当前时间日期的功能。1.TIMERime是一款可以高度自定义的输入法,相关教程可以查看往期文章,关于时间获取是指输入一个指定关键字,输出当前时间,效果如下(我定义了time关键字):实现如下:①在用户文件夹中新建一个rime.lua文件加入如下代码 ti
localfunctiongenerate_action(params)localscale_action=cc.ScaleTo:create(params.time,params.scale_x,params.scale_y)localfade_action=cc.FadeIn:create(params.time)returncc.Spawn:create(scale_action,fade_action)end
2022年1月11日13:57:45 官方:https://opm.openresty.org/官方文档:https://opm.openresty.org/docs#table-of-contents为什么建议使用opm不建议使用luarocks?http://openresty.org/cn/using-luarocks.html官方解释:请注意!LuaRocks并不是OpenResty官方推荐的装包方式。LuaRoc
在Lua中的table(表),就像c#中的HashMap(哈希表),key和value一一对应。元表:table的一个操作的拓展,里面包含关联了对应的方法,元方法就是其中一个。元方法:当你通过键来访问table的时候,如果这个键没有值,那么Lua就会寻找该table的metatable(假定有metatable)中的__index键。如果__inde
表排序:table.sort(list[,comp])参数list:指定表,可选参数comp:排序函数,无参数时通常按升序排序。排序函数针对表中连续的序列,其间不可以存在空洞或nil,排序函数需要两个形参(对应表中每次参加比较的两个数据),需要一个比较两个形参表达式的返回值,不能含有等于关系,例如>=,<=,==。do
一、安装lua环境1.1安装依赖包[root@centos7~]#yuminstallgccreadline-devel1.2下线lua源码包并解压[root@centos7~]#wgethttp://www.lua.org/ftp/lua-5.3.5.tar.gz[root@centos7~]#tarxvflua-5.3.5.tar.gz-C/usr/local/src1.3进行编译[root@centos7~]
官网OpenResty® 是一个基于 Nginx 与Lua的高性能Web平台,其内部集成了大量精良的Lua库、第三方模块以及大多数的依赖项。用于方便地搭建能够处理超高并发、扩展性极高的动态Web应用、Web服务和动态网关。OpenResty® 通过汇聚各种设计精良的 Nginx 模块(主要由
表参考《lua程序设计》可以认为,表是一种动态分配的对象,程序只能操作指向表的引用(或指针)。除此以外,Lua语言不会进行隐藏的拷贝(hiddencopies)或创建新的表--创建表a={}--创建空表k="x"a[k]=10--键“x”值10a[20]="great"--键20值“great”print(a["x"])-->10
https://github.com/galenho/crossover.git一个跨平台的lua游戏服务器开发框架,该框架采用多线程并发来处理消息,开发者只需要调用相应的接口函数并绑定相应的回调函数即可,在逻辑层表现为单线程的开发模式,使开发者易用,易调试,易维护,易扩展,同时拥有快速的响应能力。   框架使用面
参考链接:https://www.runoob.com/lua/lua-metatables.htmlhttps://www.jianshu.com/p/cb945e7073a3 元表是一个table,可以让我们改变table的行为,每个行为有对应的元方法例如,对table进行设置键值,查找键值,运算等,就会触发对应的元方法1--__index:table被访问时,如果找不到这
https://github.com/yuin/gopher-luahttps://github.com/yuin/gopher-lua Lua5.1ReferenceManual-contentshttp://www.lua.org/manual/5.1/ go中使用luapackagemainimport( lua"github.com/yuin/gopher-lua")funcmain(){ l:=lua.NewState() d
编译问题不要留到运行时才跑出来啊。早上9:00-中午3:00,6个小时,服了自己了。 写了一个测试,springboot+redis+lua执行到redisTemplate.execute(redisScript,idList)的时候一直报错,integer无法转换为string。我一直以为是lua脚本写错了,翻文档翻过来又翻过去,写法变了又变,还是解
        。。是字符串连接符,字典用=号连接,  注意fordoend都是连一起,  注意ifthen,  如果local在函数里,是可以访问,非local出了函数一样能用,  doend代码块也是一样,    注意点号表示,只能key是字符串,  注意括号不是必须
C语言与Lua之间的相互调用详解写一个C调用Lua的Demo编译运行C语言调用Lua编译问题总结正确的编译命令问题1:缺少-lm参数问题2:缺少-ldl参数​1、为什么会出现undefinedreferenceto‘xxxxx’错误?​2、-l参数和-L参数写一个C调用Lua的Demo编译运行add.c内容//你需要
1、动态输出打开E:\study\openresty\openresty-1.19.9.1-win64目录下的confginx.conf文件在server中增加一下代码 location/hello{ default_typetext/html; content_by_lua'ngx.say("<p>hello,world</p>")'; }运行后,效果如下图localhost
参见:lipp/lua-websockets:WebsocketsforLua.(github.com)github网址可能需手动转换lipp.github.com/lua-websockets/>github.com/lipp/lua-websocketswebsockets为底层的类似于TCP、UDP的socket(实现上基于更底层的socket),不同于上层的webserver服务端(Service)需并行地支持多
lua发送消息到rabbitmq,我们选择类库lua-resty-rabbitmqstomp 来完成这个任务。类库安装:进入nginx.conf中 lua_package_path 中对应的目录下的resty目录(没有则创建),执行:wget-chttps:/aw.githubusercontent.com/wingify/lua-resty-rabbitmqstomp/master/libes
1Lua介绍Lua是一门以其性能著称的脚本语言,被广泛应用在很多方面。Lua一般用于嵌入式应用,现在越来越多应用于游戏当中,魔兽世界,愤怒的小鸟都有用到。优势Lua极易嵌入到其他程序,可当做一种配置语言。提升应用性能,比如:游戏脚本,nginx,wireshark的脚本兼容性强,可以直接使用C