summaryrefslogtreecommitdiff
path: root/devel/python-mode/MESSAGE
blob: 871d6e96d44f9349e9a8a6d730f3926ffcf208d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
===========================================================================
$NetBSD: MESSAGE,v 1.2 2008/04/13 22:12:56 wiz Exp $

You will need to customize your .emacs.el (or default.el) file to
autoload Python mode for Emacs. For example:

(setq auto-mode-alist (cons '("\\.py$" . python-mode) auto-mode-alist))
(setq interpreter-mode-alist (cons '("python" . python-mode)
                                   interpreter-mode-alist))
(autoload 'python-mode "python-mode" "Python editing mode." t)

===========================================================================