gpt4 book ai didi

ruby 鞋,para.cursor 方法

转载 作者:太空宇宙 更新时间:2023-11-03 16:30:33 26 4
gpt4 key购买 nike

我的问题是关于“para”对象。我在哪里可以找到 para 的所有方法?我尝试了 shoesrb.com 手册,但它只说 para 用于呈现文本。我也在 Freenode 尝试了#shoes,但没有人回答。好像没人在线。

我问是因为我不明白重磅 (###) 行的作用。

str, t = "", nil 
Shoes.app :height => 500, :width => 450 do
background rgb(77, 77, 77)
stack :margin => 10 do
para span("TEXT EDITOR", :stroke => red, :fill => white), " * USE ALT-Q TO QUIT", :stroke => white
end
stack :margin => 10 do
t = para "", :font => "Monospace 12px", :stroke => white
t.cursor = -1 ####### I don't understand this line
end
keypress do |k|
case k
when String
str += k
when :backspace
str.slice!(-1)
when :tab
str += " "
when :left ### This is the part I'm interested in
#### Can you suggest a method to put in here. It moves the cursor to the left.
when :alt_q
quit
when :alt_c
self.clipboard = str
when :alt_v
str += self.clipboard
end
t.replace str
end
end

para类有游标方法吗?官方文档没有答案。我试图将其扩展到一个简单的文本编辑器中,但我不明白如何移动光标。我是一名新手程序员,也是 Ruby 的新手。

此外,Shoes 程序员在哪里闲逛?我尝试了邮件列表,显然它已停止服务。是否有特定的论坛或不同的邮件列表?

最佳答案

感谢试用 Shoes。

是的,Red Shoes a.k.a. Shoes 3 显然有一个光标方法,可以让您设置光标的位置。虽然它没有记录,但我不得不查找来源。您使用它的里程数可能会有所不同。

Shoes 邮件列表绝对活跃。只需发送消息至 shoes@librelist.com,您就会自动注册。这将是在 Shoes 上寻求帮助的最佳 channel ,因为其余的交流主要通过 Github 问题进行。

关于 ruby 鞋,para.cursor 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16765418/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com