1

I'm using carbon emacs on mac OS X (snow leopard). I can use M-x shell or M-x eshell but these shells don't contain non-default commands, such as 'ack' that I added with MacPort. Is there some way to get a complete shell configuration in my emacs?

I bet it's possible since this works on Aquamacs. However I prefer carbon emacs for personal reasons.

tmoisan
  • 123
  • 6

2 Answers2

0

You probably just need to add the path to your MacPort binaries to your PATH. Add this at the end of your ~/.profile or ~/.bashrc:

export PATH=/opt/local/bin:/opt/local/sbin:$PATH
0

You should also take a look at this thread here at SU.

monotux
  • 1,787