如何更改 emacs c 缩进样式以不使用内联 c++ 缩进左大括号方法
我现在在emacs中使用bsd风格。这是我几年前学习 pascal 后开始使用的一种风格,我决定在新项目中使用它而不是其他风格。
然而,emacs bsd 风格有两件事让我烦恼。它缩进内联方法。
1)如何阻止它像这样缩进?
即
class A
{
A()
{
// do stuff
}
};
我希望大括号与此类方法位于同一行。
class A
{
A()
{
// do stuff
}
};
环顾四周,我似乎需要设置 c-set-offset substatement-open' 0)
但我不知道如何将其附加到 lisp 中的 bsd 样式。我尝试了一下,但在启动 emacs 时出现解析错误。
2)如何让tab键插入4个空格?
I'm now using the bsd style in emacs. It's a style I started with years back after coming from learning pascal and I've decided will use over other styles for new projects.
However, there is two things that bug me with the emacs bsd style. It indents inline methods.
1) How do I stop it indenting like this?
i.e.
class A
{
A()
{
// do stuff
}
};
I want the brace to be on the same line as methods like this.
class A
{
A()
{
// do stuff
}
};
Looking around it appears like I need to set
c-set-offset substatement-open' 0)
But I don't know how to attach this to the bsd style in lisp. I gave it a go, but got parse errors on starting emacs.
2) How to make the tab key insert 4 spaces?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚仔细检查了我的 emacs 设置,这正如您为我描述的那样:
尝试插入空格而不是制表符:
I just doubled checked my emacs setup and this does what you describe for me:
Try this to insert spaces instead of tabs: