language-configuration.json 546 B

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