Xcode как форматирование многострочных параметров - PullRequest
0 голосов
/ 13 февраля 2019

Можно ли получить Xcode как отступ для многострочных параметров, например:

NSDictionary *userDict = [NSDictionary dictionaryWithObjectsAndKeys:
                          object1, key1,
                          nil];

В настоящее время он выравнивается по двоеточию:

NSDictionary *userDict = [NSDictionary dictionaryWithObjectsAndKeys:
                                                                    object1, key1,
                                                                    nil];

.clang-формат :

BasedOnStyle: Chromium
AlignTrailingComments: true
BreakBeforeBraces: Allman
ColumnLimit: 0
IndentWidth: 4
KeepEmptyLinesAtTheStartOfBlocks: false
ObjCSpaceAfterProperty: true
ObjCSpaceBeforeProtocolList: true
PointerBindsToType: false
SpacesBeforeTrailingComments: 1
TabWidth: 8
UseTab: Never
...