mzsql.lang.json 351 B

1234567891011121314151617181920212223242526
  1. {
  2. "comments": {
  3. "lineComment": "--",
  4. "blockComment": [ "/*", "*/" ]
  5. },
  6. "brackets": [
  7. ["{", "}"],
  8. ["[", "]"],
  9. ["(", ")"]
  10. ],
  11. "autoClosingPairs": [
  12. ["{", "}"],
  13. ["[", "]"],
  14. ["(", ")"],
  15. ["\"", "\""],
  16. ["'", "'"]
  17. ],
  18. "surroundingPairs": [
  19. ["{", "}"],
  20. ["[", "]"],
  21. ["(", ")"],
  22. ["\"", "\""],
  23. ["'", "'"],
  24. ["`", "`"]
  25. ]
  26. }