This is a simple one, but setting the editor used by %edit to Notepad++ in Windows (via the EDITOR environment variable) and Emacs on the Mac (via the ~/.ipython/ipy_user_conf.py file).
Nice things you can do once you've set up your own editor include:
edit /foo/bar/fizz.py
to create a file with the given name and location to easily write a new module and:
edit modulename
to edit the code for a given module (provided it's currently imported). For example you could type:
import subprocess
edit subprocess
and you'll immediately be thrown into your editor of choice with the source for the subprocess module open.
