gdscript.language-configuration.json 724 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "comments": {
  3. "lineComment": "#"
  4. },
  5. "brackets": [
  6. ["{", "}"],
  7. ["[", "]"],
  8. ["(", ")"]
  9. ],
  10. "autoClosingPairs": [
  11. { "open": "{", "close": "}" },
  12. { "open": "[", "close": "]" },
  13. { "open": "(", "close": ")" },
  14. { "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
  15. { "open": "'", "close": "'", "notIn": ["string", "comment"] }
  16. ],
  17. "autoCloseBefore": ";:.,=}])>` \n\t",
  18. "surroundingPairs": [
  19. ["{", "}"],
  20. ["[", "]"],
  21. ["(", ")"],
  22. ["\"", "\""],
  23. ["'", "'"]
  24. ],
  25. "folding": {
  26. "offSide": true,
  27. "markers": {
  28. "start": "^\\s*#\\s*region\\b",
  29. "end": "^\\s*#\\s*endregion\\b"
  30. }
  31. },
  32. "onEnterRules": [
  33. {
  34. "beforeText": ":\\s*$",
  35. "action": {
  36. "indent": "indent"
  37. }
  38. }
  39. ]
  40. }