1name = "C++"
2path_suffixes = ["cc", "cpp", "h", "hpp", "cxx", "hxx", "inl"]
3line_comment = "// "
4autoclose_before = ";:.,=}])>"
5brackets = [
6 { start = "{", end = "}", close = true, newline = true },
7 { start = "[", end = "]", close = true, newline = true },
8 { start = "(", end = ")", close = true, newline = true },
9 { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
10 { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
11 { start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
12]