ClojureBox 是否支持开箱即用的自动对齐?
我正在切换到 Clojurebox 来编辑我的 clojure 文件。但是我无法让自动对齐工作。我希望当我按回车键时,光标在我正在编辑的行之后移动两个空格。
I am switching to Clojurebox to edit my clojure files. However I can't get the automatic alignment to work. I want the cursor to move two spaces after the line that I am editing when I hit return.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Emacs 中换行和缩进的组合键是 Ctrl-j。
The key combination for newline-and-indent in Emacs is Ctrl-j.
当您的标记位于一行中的某个位置时按 TAB 时,它(clojure 模式)会缩进您所在的行。
您还可以使用 C-SPC + 箭头标记一堆代码,然后按 TAB 键缩进。
When you hit TAB when your mark is somewhere in a line, it (clojure-mode) indents the line you are on.
Also you can mark a bunch of code with C-SPC + arrows and hit TAB to indent that.