hchunhui / librime-lua

Extending RIME with Lua scripts
BSD 3-Clause "New" or "Revised" License
359 stars 45 forks source link

add menu:create_page(page_size, page_no) #293

Open shewer opened 11 months ago

shewer commented 11 months ago

CandidateList menu:create_page(page_size, page_no)

local seg =  ctx.composition:back()
local cands = seg and seg.menu 
     and seg.menu:create_page(5,0)
cands = cands or {}
for _, cand in ipairs(cands) do print(cand.text) end