Emacs 缩进
在 Emacs 中,只有在按回车键(在 cc 模式下)后,该行才会缩进。这正常吗?可以将其更改为在遇到新行时自动缩进吗?
我如何查看变量,例如有许多预定义的样式。查看变量“c-style-alist”以查看它们的列表。
?
In Emacs, the line gets indented only after hitting return (in cc-mode). Is that normal? Can that be changed to indent automatically when it hits a new line?
How do I look at variables, for example There are a number of predefined styles. Take a look at the variable ‘c-style-alist’ to see a list of them.
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我所有的编程模式挂钩中,我都有这一行:
例如,如果您希望在所有“c”之类的模式中使用它,您可以将其添加到您的 .emacs 文件中:
第二个问题:
要描述某些内容,您可以使用 help 命令。 “v”获取变量的帮助,因此您可以使用: Mx help v
in all of my programming mode hooks i have this line:
if for example, you wanted this in all "c" like modes, you would add this to your .emacs file:
Second question:
to describe something, you would use the help command. "v" gets help on variables, so you would use: M-x help v
对于第一个问题,Mx electric-indent-mode 应该可以解决问题。
For the first question, M-x electric-indent-mode should do the trick.