如何更改 emacs c 缩进样式以不使用内联 c++ 缩进左大括号方法

发布于 2024-11-03 09:25:54 字数 478 浏览 0 评论 0原文

我现在在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

π浅易 2024-11-10 09:25:55

我刚刚仔细检查了我的 emacs 设置,这正如您为我描述的那样:

(setq c-default-style "bsd"
      c-basic-offset 4)

尝试插入空格而不是制表符:

(setq tab-width 4)
(setq indent-tabs-mode nil)

I just doubled checked my emacs setup and this does what you describe for me:

(setq c-default-style "bsd"
      c-basic-offset 4)

Try this to insert spaces instead of tabs:

(setq tab-width 4)
(setq indent-tabs-mode nil)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文