|
77 | 77 | "C_Cpp.clang_format_style": { |
78 | 78 | "type":"string", |
79 | 79 | "default":"file", |
80 | | -"description":"Coding style, currently supports: Visual Studio, LLVM, Google, Chromium, Mozilla, WebKit. Use\"file\" to load the style from a .clang-format file in the current or parent directory. Use\"{key: value, ...}\" to set specific parameters, e.g.:\"{ BasedOnStyle: LLVM, IndentWidth:8 }\"", |
| 80 | +"description":"Coding style, currently supports: Visual Studio, LLVM, Google, Chromium, Mozilla, WebKit. Use\"file\" to load the style from a .clang-format file in the current or parent directory. Use {key: value, ...} to set specific parameters. For example, the\"Visual Studio\" style is similar to:{ BasedOnStyle: LLVM,UseTab: Never,IndentWidth:4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }", |
81 | 81 | "scope":"resource" |
82 | 82 | }, |
83 | 83 | "C_Cpp.clang_format_fallbackStyle": { |
84 | 84 | "type":"string", |
85 | 85 | "default":"Visual Studio", |
86 | | -"description":"Name of the predefined style used as a fallback in case clang-format is invoked with style\"file\" but the .clang-format file is not found. Possible values are Visual Studio, LLVM, Google, Chromium, Mozilla, WebKit, none, or use\"{key: value, ...}\" to set specific parameters, e.g.:\"{ BasedOnStyle: LLVM, IndentWidth:8 }\"", |
| 86 | +"description":"Name of the predefined style used as a fallback in case clang-format is invoked with style\"file\" but the .clang-format file is not found. Possible values are Visual Studio, LLVM, Google, Chromium, Mozilla, WebKit, none, or use {key: value, ...} to set specific parameters. For example, the\"Visual Studio\" style is similar to:{ BasedOnStyle: LLVM,UseTab: Never,IndentWidth:4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }", |
87 | 87 | "scope":"resource" |
88 | 88 | }, |
89 | 89 | "C_Cpp.clang_format_sortIncludes": { |
|