Fabian Boehm
Fabian Boehm
>I don't get it. Nobody needs to use the -z, -n, -a or -o options to test. I consider it an error to use them. Then why are they there?...
Yeah, no, fish needs control of the terminal. So the solution here is simple: Don't do that. > warning: No TTY for interactive shell (tcgetpgrp failed) What this means is...
Fish is a shell, which requires a bunch more things from the terminal (when it comes to things like job control). Tmux, in contrast, is basically its own terminal. Fish...
This is pretty hard to review because there are a lot of formatting changes mixed in with actual changes. So far, the new or changed translations are good, but it's...
Okay, there are about 300 useful lines in here, and ~7000 useless formatting changes. There are two kinds of problems: One is change in wrapping for the file lines: ```diff...
There *is* a thing that uses "co" as a name. Figuring out that it wouldn't match would require running the abbr function on-the-fly in the background. That's probably not a...
Guess that's fair enough - run another highlighting pass after failed abbr expansion.
This appears when you haven't installed the local documentation. Most likely you didn't have sphinx when building fish. Do that and it'll work.
Much of this is patched around in https://github.com/termux/termux-packages/tree/master/packages/fish. Some of those patches are almost acceptable: - https://github.com/termux/termux-packages/blob/master/packages/fish/0001-build.rs.patch disables posix_spawn. It should do that only with the appropriate cfg, but then...
After thinking some more, there's another possibility: Add them as rsconf checks in build.rs, e.g. `target.has_symbol("MNT_LOCAL")`. That would be useful if we expected more things to differ, but so far...