Files
atom/packages/language-rust-bundled/settings/rust.cson
2018-10-17 19:30:21 -07:00

25 lines
501 B
Plaintext

'.source.rust':
'editor':
'commentStart': '// '
'increaseIndentPattern': '(?x)
^ .* \\{ [^}"\']* $
|^ .* \\( [^\\)"\']* $
|^ \\s* \\{ \\} $
'
'decreaseIndentPattern': '(?x)
^ \\s* (\\s* /[*] .* [*]/ \\s*)* \\}
|^ \\s* (\\s* /[*] .* [*]/ \\s*)* \\)
'
'tabLength': 4
'softTabs': true
'preferredLineLength': 99
'bracket-matcher':
autocompleteCharacters: [
'()'
'[]'
'{}'
'<>'
'""'
'``'
]