Qi Xiao
Qi Xiao
I agree with the desired behavior, and that's what I would do if we were starting from scratch. But because we're not starting from scratch, there are some things to...
There are a few workarounds to suppress the "Terminate batch job" prompt documented here: https://superuser.com/questions/1705792/how-to-suppress-windows-batch-job-termination-confirmation
See my comment in #1854 about this feature request; I'm leaning towards rejecting this, but maybe it's a good idea to special-case `.elv` files on Windows instead.
Thanks, I like the idea in principle, but looking at the implementation, a problem is that there are actually two different PowerShell's: - The classical "Windows PowerShell" that comes pre-installed...
Destructuring is a generally useful feature, so I prefer using it for iterating maps. Something like: ```elvish var m = [&k=v &k2=v2] pairs $m # ▶ [k v] # ▶...
Pattern matching / destructuring in general has a tracking issue #217. For map iteration specifically we need: - A `pairs` command that outputs `[k v]` pairs of a map -...
`head -n1` works for pipe inputs as well. For value inputs, `take $n` works. However, it consumes all the remaining values as well. Having dedicated builtin commands for taking byte...
@nevkontakte thanks for your interest and your proposal makes sense with the current API - but Elvish's TUI is in a bit of an awkward state now. I'm rewriting it...
Yes, this is not a replacement for general-purpose synchronization primitives.
> Given that this is now targeted for the 0.16.0 release I feel compelled to point out that more discussion is warranted. I used the milestone a prioritization signal on...