如何更改提示

发布于 2024-11-09 06:50:04 字数 128 浏览 0 评论 0原文

我正在尝试在 ripl 中配置提示字符,这是交互式 ruby​​ (irb) 的替代品。在 irb 中,它是使用 IRB.conf[:DEFAULT] 完成的,但它似乎不适用于 ripl。我也很难找到它的说明。请引导至解释链接或给出简短解释。

I am trying to configure the prompt characters in ripl, an alternative to interactive ruby (irb). In irb, it is done using IRB.conf[:DEFAULT], but it does not seem to work with ripl. I am also having difficulty finding an instruction for it. Please guide to a link for an explanation or give a brief explanation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

作死小能手 2024-11-16 06:50:04

在 ~/.riplrc 中配置动态提示符:

# Shows current directory
Ripl.config[:prompt] = lambda { Dir.pwd + '> ' }
# Print current line number
Ripl.config[:prompt] = lambda { "ripl(#{Ripl.shell.line})> " }
# Simple string prommpt
Ripl.config[:prompt] = '>>> '

更改 shell 中的提示符:

>> Ripl.shell.prompt = lambda { Dir.pwd + '> ' }

Configuring a dynamic prompt in ~/.riplrc:

# Shows current directory
Ripl.config[:prompt] = lambda { Dir.pwd + '> ' }
# Print current line number
Ripl.config[:prompt] = lambda { "ripl(#{Ripl.shell.line})> " }
# Simple string prommpt
Ripl.config[:prompt] = '>>> '

Changing the prompt in the shell:

>> Ripl.shell.prompt = lambda { Dir.pwd + '> ' }
脸赞 2024-11-16 06:50:04

ripl 加载您的 ~/.irbrc 文件,该文件
通常包含一些特定于 IRB 的
选项(例如 IRB.conf[:PROMPT])。到
避免错误,即可安装
ripl-irb,它捕获对
IRB 常量并将消息打印到
将 irb 配置转换为 ripl
等价物。

http://rbjl.net/44-ripl-why -你应该使用irb替代方案

ripl loads your ~/.irbrc file, which
typically contains some irb specific
options (e.g. IRB.conf[:PROMPT]). To
avoid errors, you can install
ripl-irb, which catches calls to the
IRB constant and prints messages to
convert irb configuration to ripl
equivalents.

http://rbjl.net/44-ripl-why-should-you-use-an-irb-alternative

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文