使输出中的打印符号保持水平
考虑这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
比例字体具有不同宽度的字符,破坏了基于空间的对齐。
切换到等宽字体(例如,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.
为了使其在 Scite 中工作,您应该添加
style.errorlist.32=$(font.monospace)
中SciteUser.properties
文件In order to make it work in Scite You should add
style.errorlist.32=$(font.monospace)
inSciteUser.properties
file