aboutsummaryrefslogtreecommitdiff
path: root/cad/dinotrace/pkg-message
diff options
context:
space:
mode:
Diffstat (limited to 'cad/dinotrace/pkg-message')
-rw-r--r--cad/dinotrace/pkg-message15
1 files changed, 15 insertions, 0 deletions
diff --git a/cad/dinotrace/pkg-message b/cad/dinotrace/pkg-message
new file mode 100644
index 000000000000..78d78be63f00
--- /dev/null
+++ b/cad/dinotrace/pkg-message
@@ -0,0 +1,15 @@
+====
+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))
+
+====