language-configuration.json 496 B

123456789101112131415161718192021222324
  1. {
  2. // symbols used as brackets
  3. "brackets": [
  4. ["{", "}"],
  5. ["[", "]"],
  6. ["(", ")"]
  7. ],
  8. // symbols that are auto closed when typing
  9. "autoClosingPairs": [
  10. ["{", "}"],
  11. ["[", "]"],
  12. ["(", ")"],
  13. ["\"", "\""],
  14. ["'", "'"]
  15. ],
  16. // symbols that that can be used to surround a selection
  17. "surroundingPairs": [
  18. ["{", "}"],
  19. ["[", "]"],
  20. ["(", ")"],
  21. ["\"", "\""],
  22. ["'", "'"]
  23. ]
  24. }