使用Scite的自动缩进问题
我正在学习 Ruby 并使用 Scite 编辑器,但我发现有些东西我无法配置。
- 当我输入“
def sayXXX
”,然后按 Enter 键,然后输入“end
”时,现在是“end”关键字是缩进的,所以它没有与“def”对齐,如何制作呢? - 有什么方法可以让 scite 提供一些 Ruby 相关的 API 内容帮助吗?
I am learning Ruby and use the Scite editor, but I found there is something I can not configure.
- When I type "
def sayXXX
" and then I press the Enter key, and then I type "end
", now the "end" keyword is indented, so it is not aligned to the "def", how to make it? - Any way to make scite provide some Ruby related API content assistance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
输入“end”后,我按
,将“end”取消缩进一个级别,然后
--删除当前行。有点烦人,但我已经习惯了。对你的第二个问题的解决方案不太了解。
After I type "end" I press
<Enter>
which unindents "end" back a level and then<Ctrl><Shift><L>
-- delete current line. Sort of annoying but I'm used to.Don't know much about solution to your second problem.