aboutsummaryrefslogtreecommitdiff
path: root/cad/dinotrace/pkg-message
blob: a0d53aafdc46c7f6a93822d04cabc9430887a0d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[
{ type: install
  message: <<EOM
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))
EOM
}
]