Kurtis Rader
Kurtis Rader
@amitsax, Why would you expect a Linux based router to support writing to an NTFS formatted drive? It's far easier to simply format your USB drive to use one of...
I was going to close this as "will-not-implement" because we most definitely do not want to expand constructs like subcommands. However, expanding wildcards is safe from side-effects and could be...
It seems to me that it must escape all strings so that when word splitting is done you get the same tokens that would occur from the unexpanded args. This...
The problem with expanding job specifiers in this manner is that it doesn't help. Consider the example in the original problem statement. You type something like `%fi` and expand it...
I'm confused by your example, @faho. Specifically this one: `for file in (expand 'a*')`. Why do we need an `expand` command for this when you can already just do `for...
Also, the proposed `expand` command is more general than the `glob` command we've talked about and can therefore obviate the need for the latter. But to do so `expand` will...
We should not introduce "syntactic sugar" for this pattern since it is not used often enough to justify the complexity; not to mention violating the "Law Of Orthogonality" as @faho...
From my opening problem description in #4224: While working on the fix for issue #4211 I noticed that the exec_subshell() function only collects the stdout of the sub shell. This...
Keep in mind that fish has two distinct mechanisms: auto-suggestions and completions. The former is based on you command history. The latter on a combination of auto-generated or hand crafted...
> I haven't used your shell, but AFAIK for some reason you still don't have this feature. If you haven't used fish why do you think you are in a...