Adding:
eval $(try init "Users/rushjj1/try")
to .zshrc in order for try to work properly causes the word src to be an alias for try
Even if you do this:
unalias src 2>/dev/null || true
unset -f src 2>/dev/null || true
src() {
builtin source ~/.zshrc
}
running src will still launch try
try should be the only thing added to the shell space.
Removing try prevents the shell naming pollution. Removing the eval line from .zshrc also prevents the naming pollution but of course try doesn't work without those.
this was with installing both ruby and try via homebrew
Adding:
eval $(try init "Users/rushjj1/try")to .zshrc in order for try to work properly causes the word
srcto be an alias fortryEven if you do this:
running
srcwill still launchtrytryshould be the only thing added to the shell space.Removing
tryprevents the shell naming pollution. Removing theevalline from .zshrc also prevents the naming pollution but of course try doesn't work without those.this was with installing both ruby and try via homebrew