mitranim / sublime-rust-fmt

Sublime Text plugin that formats Rust code with rustfmt
30 stars 3 forks source link

Converts tabs to spaces? #9

Closed soumya92 closed 6 years ago

soumya92 commented 6 years ago

Despite "hard_tabs = true" in rustfmt.toml, it seems the plugin forces spaces. Any chance you could detect the option from the config, or avoid changing the view settings on format?

mitranim commented 6 years ago

This was intended as a convenience feature for automatically translating "improper" tab indentation into "proper" space indentation. Apologies for the inconvenience. Just pushed 0.1.8 that no longer forces spaces.

soumya92 commented 6 years ago

That works perfectly! Thanks for the quick response :+1: