Nelo Mitranim

Results 96 comments of Nelo Mitranim

Apologies but I totally forgot about these. Will try to get around to it this week.

Thank you for the tips! Will take some time to go through these, got a lot happening right now. 😅

Interesting. Adding a command or argument to format each selected region, rather than buffer, should be pretty simple. The plugin could use the scopes at selection start, rather than buffer...

In a general case we have N selection regions. Does `clang-format` support formatting N selections, by passing offset-length multiple times? When files are being watched, you don't want to save...

It would be possible with variables if `clang-format` supported passing them like this: ``` -offset 10,20,30 -length 40,50,60 ``` The documentation seems to indicate that you need pairs: ``` -offset...

We could have variables for "start of first selection" and "length of first selection". There could be incompatibilities between how ST and `clang-format` count the characters, in which case we...

Thanks for taking notice. `app.css` is actually compiled from .less files, so you should edit those (run `gulp` to recompile). In Bootstrap, heading sizes are variables (see `variables.less`), so you...

I'm not planning a webpack loader, as I haven't personally run into this tool. Would welcome if someone hacked one together.

Perhaps this calls for `edition = "2018"` in `rustfmt.toml` or a project-specific `executable` setting in RustFmt? ```sublime-settings "executable": ["rustfmt", "--edition", "2018"], ```

Please let me know if this solves the issue.