Johannes Altmanninger
Johannes Altmanninger
It seems like we could avoid this problem by making the "install" target not require cargo/rustc (not sure why it is). (Assuming "all" has been built; perhaps we should warn...
Right - the cargo cache is per-user which somehow makes it rebuild. I wonder if we can detect if install is invoked from `make` or `ninja` as opposed to `cmake...
Sure, someone just needs to implement it. It could be a similar change as https://github.com/fish-shell/fish-shell/pull/6143, which added prefix history search as an alternative to token history search. For this I'd...
A lightweight first iteration of this could look like: 1. Whenever a universal variable is set, also set it to the global scope 2. Whenever a global variable is set,...
> if status is-login set --export CXXFLAGS -O2 -pipe -Wall -Wextra end You can remove the `if` and set it as global variable in every new shell. Or keep using...
uvars are often misunderstood by users (resulting in huge $PATH variables). We are trying to replace them with something simpler that keeps the good features. IOW, 
> I thought someone was thinking to do away with universal variables and replace them with some mechanism that just saves maintains an init script, honestly. yeah that's a possible...
If they advertise it as non-systemd specific standard then we should implement it, but I'm not sure if that's the case. Since systemd already supports other shells, it wouldn't be...
> But can simply config files easily append/prepend stuff to prompts defined in themes? yeah that might be hacky because `fish_prompt` is the single source of truth. We should make...
> Happy to assist in implementing this if there's interest. I think supporting SHELL_PROMPT_PREFIX out of the box would be a good start. We can add more flexible knobs later,...