language-configuration.json 499 B

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