Kurtis Rader

Results 691 comments of Kurtis Rader

I don't understand what "Extension: v0.2.0" refers to. Regardless, the reason this works for me is thanks to a great Elvish module known as [Carapace](https://github.com/rsteube/carapace-bin). Which I enable with this...

I see I failed to recognize the original problem statement involved command completion inside the VS Code IDE. But in my defense, @EmilySeville7cfg, I would argue that is because you...

Note that resolving this issue also enables resolving issue #1661 since it would allow replacing a lot of external commands used by the `epm` module with Elvish builtins.

This [comment by @xiaq](https://github.com/elves/elvish/pull/1679#issuecomment-1509292632) on my change to implement a `path:remove` has caused me to think more about this issue. There are reasonable arguments for and against deviating from the...

Why ins't the `env` command (e.g., `env LS_COLORS='' ls`) a reasonable solution to this problem? The cost is close to zero and adds just a couple of characters when type...

> The methods are used in history walking mode to avoid loading the entire history into memory. That is true for the implementation underlying `store:prev-cmd` but not `store:next-cmd`, AFAICT. The...

Note that there are a large number of commands that produce output on the byte stream; e.g., [`to-lines`](https://elv.sh/ref/builtin.html#to-lines). We probably do not want special cases of all those commands and...

While I would like to see numeric bitops implemented there are considerable challenges for doing so in Elvish given its numeric model. What does it mean to perform a bitop...

> I think bitwise operations should work for all exact integers (int and big.Int). I agree. It is easy and obvious how to implement bitwise "and", "or", and shift left/right...

See also https://github.com/elves/elvish/issues/732. I agree that software flow-control should be disabled by default. Whether it should be possible for a user to enable it using the `stty` command is debatable...