diff options
| author | David Aspinall | 2000-05-01 18:18:36 +0000 |
|---|---|---|
| committer | David Aspinall | 2000-05-01 18:18:36 +0000 |
| commit | 2686b031901a24ea604afbbdc857ab6eac29e9b0 (patch) | |
| tree | 7a9c6023aa3bd627d42a7e80e1cd24052d44e935 | |
| parent | e9ac9e8eb3d2567ff1ab12cf7bfdd60d5df2c30f (diff) | |
Added specific menu for Coq.
| -rw-r--r-- | coq/coq.el | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -47,6 +47,18 @@ :type 'string :group 'coq) +;; ----- coq specific menu + +(defcustom coq-menu-entries + '(["Intros" coq-Intros] + ["Apply" coq-Apply] + ["Search isos" coq-SearchIsos] + ["Begin Section" coq-begin-Section] + ["End Section" coq-end-Section] + ["Compile" coq-Compile]) + "Entries for Coq menu.") + + ;; ----- coq-shell configuration options (defcustom coq-prog-name "coqtop -emacs" @@ -415,6 +427,8 @@ This is specific to coq-mode." (setq proof-assistant-home-page coq-www-home-page) + (setq proof-assistant-menu-entries coq-menu-entries) + (setq proof-mode-for-script 'coq-mode) (setq proof-guess-command-line 'coq-guess-command-line) |
