Ed Page

Results 4042 comments of Ed Page

Also from [reddit](https://www.reddit.com/r/rust/comments/vfx0zs/quick_tip_you_dont_need_to_create_a_new_cargo/id1fgbr/) > I want the default action for source files to be opening them in an editor. That's what you want (spitballing) 99% of the time. .crs files...

Other ideas - Allow templates in and settings in `.cargo` so they can be defined in your workspace with your scripts (build on #45) - Allow specifying the template (https://github.com/fornwall/rust-script/issues/3)...

Interesting idea - We could possibly extend the format for `edition` so new scripts are locked in at the edition at the time of writing - People might hate the...

If you're interested in joining efforts with crate-ci and/or cargo-travis, let us know! I'll get write permission setup for you.

It'd be nice if `combine` did a look up an showed a word or an escape sequence instead of rendering these characters. I'd be willing to implement this, just want...

I assume we'd either do a debug representation of the string or only do this if the string is 1 character long.

I think the main question is handling of unicode, whether those should be escaped or not. I think most users can see and understand a unicode character but the escaped...

My proposal is we'd escape - unprintable - `\t`, `\n`, `\r` - Our quote character (back-quote) I'd personally not escape `\` since we are creating something for humans and I...

Also brought this up with `predicate-rs` See https://github.com/nastevens/predicates-rs/issues/5

> Hmm, AFAIK enabling features can only add dependencies to the graph, so specifying --all-features might Just Work™. Some features are mutually exclusive though. For example some crates let you...