Closes #41179 Release Notes: - Fixed indentation for if/else statements in C/C++ without braces
21 lines
1.0 KiB
TOML
21 lines
1.0 KiB
TOML
name = "C++"
|
|
grammar = "cpp"
|
|
path_suffixes = ["cc", "hh", "cpp", "h", "hpp", "cxx", "hxx", "c++", "ipp", "inl", "ino", "ixx", "cu", "cuh", "C", "H"]
|
|
line_comments = ["// ", "/// ", "//! "]
|
|
decrease_indent_patterns = [
|
|
{ pattern = "^\\s*\\{.*\\}?\\s*$", valid_after = ["if", "for", "while", "do", "switch", "else"] },
|
|
{ pattern = "^\\s*else\\b", valid_after = ["if"] }
|
|
]
|
|
autoclose_before = ";:.,=}])>"
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
|
|
{ start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
|
|
{ start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
|
|
]
|
|
debuggers = ["CodeLLDB", "GDB"]
|
|
documentation_comment = { start = "/*", prefix = "* ", end = "*/", tab_size = 1 }
|
|
import_path_strip_regex = "^<|>$"
|