Is your feature request related to a problem? Please describe.
Somewhat. When Ally finishes a command, it will output:
To make these settings take effect for this terminal session,
And then cuts off. We ideally want to have ally reload the terminal automatically.
Describe the solution you'd like
The ally command should be set into a zsh function, allowing source to be run after normal command finishes. Otherwise, we can change it to outputting
source $HOME/.ally
Describe alternatives you've considered
A function or asking the user to run source, but that requires further user action. Since it is ally's goal to mimic the alias command, we ideally want it to add it to the local session like alias does.
This is TOP PRIORITY because it is how the user will reload the terminal. Failure to accomplish this issue means that the ally command DOES NOT WORK like the ZSH alias command.
Is your feature request related to a problem? Please describe. Somewhat. When Ally finishes a command, it will output:
And then cuts off. We ideally want to have ally reload the terminal automatically. Describe the solution you'd like The
ally
command should be set into a zsh function, allowingsource
to be run after normal command finishes. Otherwise, we can change it to outputtingDescribe alternatives you've considered A function or asking the user to run
source
, but that requires further user action. Since it isally
's goal to mimic thealias
command, we ideally want it to add it to the local session likealias
does.