On Jan 10, 2006, at 1:21 AM, Trevor Harmon wrote:
Hmm... I have Fink, and it installs an init.sh script that gets called by /etc/profile, so it runs every time a new shell is created. Perhaps that's the source of the problem. Any Fink users out there?
I did some more investigating, and it turns out Fink was indeed the source of the problem...sort of. I discovered this in my ~/.profile:
test -r /sw/bin/init.sh && . /sw/bin/init.sh test -r /sw/bin/init.sh && . /sw/bin/init.sh test -r /sw/bin/init.sh && . /sw/bin/init.sh test -r /sw/bin/init.sh && . /sw/bin/init.sh
I have no idea how that command got duplicated across four lines, but I do know that after removing all of them, TextMate is suddenly super- fast! Come to think of it, that command isn't even necessary since there's already an equivalent command in my /etc/profile. Strange... But at least the problem's fixed now!
Trevor