freebsd-ports/cad/dinotrace/pkg-message
Stanislav Sedov ce0cb11fd4 - Update to 9.3f.
- Add option for installing emacs mode files.
2009-01-12 10:31:44 +00:00

15 lines
586 B
Text

====
To activate dinotrace Emacs extensions add the following lines
to your Emacs configuration file (usually ~/.emacs):
;; Dinotrace mode
(autoload 'dinotrace-update "dinotrace" "Update dinotrace annotations in this buffer" t)
(autoload 'dinotrace-mode "dinotrace" "Toggle dinotrace annotations in this buffer" t)
(global-set-key "\C-x\C-aa" 'dinotrace-update)
(global-set-key "\C-x\C-ad" 'dinotrace-mode)
;; Sim-Log mode
(autoload 'sim-log-mode "sim-log" "Mode for Simulation Log files." t)
(setq auto-mode-alist (append (list '("\\.log$" . sim-log-mode)) auto-mode-alist))
====