使输出中的打印符号保持水平

发布于 2024-12-11 14:25:06 字数 284 浏览 0 评论 0原文

考虑这个 Ruby 代码:

puts "*****"
puts "    *"
puts "     "
puts "*****"
puts "       *"

我的输出是这样的:

*****  
  *

*****
    *

为什么空格不填充与 Scite 中的 * 字符相同的空间? 我在 Eclypse 中用 Java 尝试过,效果很好。

Consider this Ruby code:

puts "*****"
puts "    *"
puts "     "
puts "*****"
puts "       *"

My Output is like this:

*****  
  *

*****
    *

Why the heck a whitespace doesn't fill the same space as * character in Scite?
I've tried it in Eclypse with Java and it works just fine.

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

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

发布评论

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

评论(2

爺獨霸怡葒院 2024-12-18 14:25:06

比例字体具有不同宽度的字符,破坏了基于空间的对齐。

切换到等宽字体(例如,Courier),这样所有字符的大小都相同,这样就可以了。

Proportional fonts have characters of varying widths, ruining space-based alignment.

Switch to a monospace font (e.g., Courier) so all characters are the same size and it'll work.

网名女生简单气质 2024-12-18 14:25:06

为了使其在 Scite 中工作,您应该添加
style.errorlist.32=$(font.monospace)
SciteUser.properties 文件

In order to make it work in Scite You should add
style.errorlist.32=$(font.monospace) in
SciteUser.properties file

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