Casey Rodarmor

Results 1064 comments of Casey Rodarmor

Whoops, didn't mean to close.

@latk I definitely agree with the idea and the approach. I think in practice, you could just do: ```rust struct Value { items: Vec, } ``` And then `.join(" ")`...

Sounds good! I agree a first pass that just introduces the new `Val` type would be great, even if it doesn't change any behavior or add new features.

Thanks for opening this issue! There should definitely be a way to share settings between modules. There are kind of two ways to go about it: 1. A setting in...

This does introduce the odd scenario where you can have interpolation inside a string inside an interpolation inside a string, etc, etc, etc.

Closing. If anyone wants this, comment and I'll reopen it!

Maybe thinking that we should do this. Reopening.

If this is supported, I'm inclined to do it with python's f-string syntax: `f'some string with{{interpolation}}'`

I started working on this, in-progress branch [here](https://github.com/casey/just/compare/master...format-strings). I marked this as "good first issue", but I think that's misleading, because it's super hard! I've gotten lexing and parsing mostly...

> Is there any news on the subject? This is a big feature, so time to implementation is unknown.