File: emacs-start.el

package info (click to toggle)
python-docutils 0.3.7-2sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,872 kB
  • ctags: 2,908
  • sloc: python: 27,538; lisp: 641; makefile: 102
file content (15 lines) | stat: -rw-r--r-- 568 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

;; autoload support for reStructuredText, from python-docutils
(autoload 'rst-mode "rst-mode" "mode for editing reStructuredText documents" t)

;; There's also restructuredtext.el and rst-html.el, but these seem
;; somewhat experimental.


;; The following lines are not enabled by default because the 'correct'
;; extension for reStructuredText files, according to the ReST
;; documentation, is '.txt'.  (Or nothing, for that matter.)
;;
;;(setq auto-mode-alist
;;       (append '(("\\.rst$" . rst-mode)
;;                 ("\\.rest$" . rst-mode)) auto-mode-alist))