Re: python in Emacs (windows)

2009-04-22 Thread David Robinow
On Wed, Apr 22, 2009 at 3:52 AM, Mark Zweers wrote: > Hi! > > I'm trying to run python from within Emacs. This is in my .emacs file : > > (setq auto-mode-alist ; trigger python mode automatically >    (cons '("\\.py$" . python-mode) auto-mode-alist)) > (setq interpreter-mode-alist >    (co

python in Emacs (windows)

2009-04-22 Thread Mark Zweers
Hi! I'm trying to run python from within Emacs. This is in my .emacs file : (setq auto-mode-alist ; trigger python mode automatically (cons '("\\.py$" . python-mode) auto-mode-alist)) (setq interpreter-mode-alist (cons '("python" . python-mode) interpreter-mode-alist)) (auto