▲ | amelius 3 days ago | |
Ok. That's good to know. I currently use an alias per folder. So I would type "cool-app", and it would go to the desired folder. But, and here comes the point, the alias also runs "source sourceme" to put all the environment variables in place, start virtual environments, etc. | ||
▲ | fwip 3 days ago | parent [-] | |
That sounds like you've already got it pretty well figured out, then. :) If you did want to get fuzzy-matching in your workflow, I might recommend using building a small alias/function with fzf[1], rather than using zoxide. Something like `dst=$(cat ~/myprojectlist.txt | fzf) && cd $dst && source sourceme`. You wouldn't get the list sorted by most-frequent/recent like you do with zoxide, but it sounds like that's not what you're looking for anyways. |