将同一行上的嵌套命名空间缩进一级
在 emacs 21 中:
namespace Abc { namespace Def {
class X;
namespace Ghi {
class Y;
}
} }
但现在在 emacs 22.2.1 中:
namespace Abc { namespace Def {
class X;
namespace Ghi {
class Y;
}
} }
如何恢复旧的行为?请注意,我不需要固定的缩进列,我希望它缩进一个级别,无论该行包含多少个“命名空间{”。
In emacs 21:
namespace Abc { namespace Def {
class X;
namespace Ghi {
class Y;
}
} }
But now in emacs 22.2.1:
namespace Abc { namespace Def {
class X;
namespace Ghi {
class Y;
}
} }
How do I get the old behaviour back? Note that I don't want a fixed column for indentation, I want it to indent one level regardless of how many 'namespace {' the line contains.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实上,我自己在一个清晰的思考中找到了答案:
“……”当然象征着其他个性化。
I actually found the answer myself, in a moment of clear thinking:
The '...' symbolizes other personalizations of course.