c – 如何允许clang-format在一行上格式化空类/结构?
发布时间:2020-12-16 06:52:59 所属栏目:百科 来源:网络整理
导读:具有以下结构定义: struct city{};struct country{}; 我想clang-format为我格式化它 struct city {};struct country {}; 我怎样才能做到这一点? 我可以看到许多选项,如AllowShortBlocksOnASingleLine,AllowShortFunctionsOnASingleLine或AllowShortIfState
具有以下结构定义:
struct city { }; struct country { }; 我想clang-format为我格式化它 struct city {}; struct country {}; 我怎样才能做到这一点? 我可以看到许多选项,如AllowShortBlocksOnASingleLine,AllowShortFunctionsOnASingleLine或AllowShortIfStatementsOnASingleLine,但没有AllowShortClassDefinitionsOnASingleLine(或类似). 解决方法
这样就可以了.
BreakBeforeBraces: Attach 或者你可以尝试设置 BreakBeforeBraces: Custom 和BraceWrapping一起玩.不过,这个选项对我不起作用. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |