mirror of
https://github.com/atom/atom.git
synced 2026-02-11 07:05:11 -05:00
25 lines
501 B
Plaintext
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: [
|
|
'()'
|
|
'[]'
|
|
'{}'
|
|
'<>'
|
|
'""'
|
|
'``'
|
|
]
|