rust.cson 573 B

123456789101112131415161718192021222324252627
  1. '.source.rust':
  2. 'editor':
  3. 'commentStart': '// '
  4. 'commentDelimiters':
  5. 'line': '//'
  6. 'block': ['/*', '*/']
  7. 'increaseIndentPattern': '(?x)
  8. ^ .* \\{ [^}"\']* $
  9. |^ .* \\( [^\\)"\']* $
  10. |^ \\s* \\{ \\} $
  11. '
  12. 'decreaseIndentPattern': '(?x)
  13. ^ \\s* (\\s* /[*] .* [*]/ \\s*)* \\}
  14. |^ \\s* (\\s* /[*] .* [*]/ \\s*)* \\)
  15. '
  16. 'tabLength': 4
  17. 'softTabs': true
  18. 'preferredLineLength': 99
  19. 'bracket-matcher':
  20. autocompleteCharacters: [
  21. '()'
  22. '[]'
  23. '{}'
  24. '<>'
  25. '""'
  26. '``'
  27. ]