language-configuration.json 682 B

1234567891011121314151617181920212223242526272829303132
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. {
  5. "comments": {
  6. "lineComment": "//"
  7. },
  8. // Symbols used as brackets.
  9. "brackets": [
  10. ["{", "}"],
  11. ["[", "]"],
  12. ["(", ")"]
  13. ],
  14. // Symbols that are auto closed when typing.
  15. "autoClosingPairs": [
  16. ["{", "}"],
  17. ["[", "]"],
  18. ["(", ")"],
  19. ["\"", "\""],
  20. ["'", "'"]
  21. ],
  22. // Symbols that can be used to surround a selection.
  23. "surroundingPairs": [
  24. ["{", "}"],
  25. ["[", "]"],
  26. ["(", ")"],
  27. ["\"", "\""],
  28. ["'", "'"],
  29. ["'''", "'''"]
  30. ]
  31. }