From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/1123 Path: news.gmane.org!not-for-mail From: Wael Abd-Almageed Newsgroups: gmane.emacs.gnus.user Subject: Key bindings for AUXTEX Date: Wed, 11 Sep 2002 23:23:07 -0600 Organization: University of New Mexico, Albuquerque Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: sea.gmane.org 1138667941 9912 80.91.229.2 (31 Jan 2006 00:39:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:39:01 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:28:40 2006 Original-Path: quimby.gnus.org!lackawana.kippona.com!news.infoave.net!arclight.uoregon.edu!logbridge.uoregon.edu!hardy.tc.umn.edu!nunki.unm.edu!viento.eece.unm.edu!wamageed Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: viento.eece.unm.edu Original-X-Trace: nunki.unm.edu 1031808192 13273 129.24.25.35 (12 Sep 2002 05:23:12 GMT) Original-X-Complaints-To: news@unm.edu Original-NNTP-Posting-Date: Thu, 12 Sep 2002 05:23:12 +0000 (UTC) Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:1263 Original-Lines: 24 X-Gnus-Article-Number: 1263 Tue Jan 17 17:28:40 2006 Xref: news.gmane.org gmane.emacs.gnus.user:1123 Archived-At: I'm new to Emacs and Lisp. I was wondering if someone would please tell me how to bind keys to the "Command" menu of the emacs in the LaTeX major mode. This is what I have in the "tex-site.el" file: (defvar TeX-command-list (list(list "LaTeX" "latex \\nonstopmode\\input{%t}" 'TeX-run-LaTeX nil t) (list "View" "yap %d" 'TeX-run-command nil t) (list "dviPS" "dvips %d -o %f" 'TeX-run-command nil t) (list "Ghostview" "c:\\tools\\GhostView\\gsview\\gsview32.exe %f" 'TeX-run-command nil t) (list "BibTeX" "bibtex %s" 'TeX-run-BibTeX nil nil) (list "Index" "makeindex %s" 'TeX-run-command nil t) (list "Check" "lacheck %s" 'TeX-run-compile nil t) (list "Other" "" 'TeX-run-command t t))) Thanks Wael