From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: Problem with keybindings Date: Fri, 14 Nov 2008 13:17:39 +0100 Message-ID: <871vxeh57g.fsf@thinkpad.tsdh.de> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1226665244 20716 80.91.229.12 (14 Nov 2008 12:20:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 14 Nov 2008 12:20:44 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Nov 14 13:21:45 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1L0xg8-0002pT-Q8 for geh-help-gnu-emacs@m.gmane.org; Fri, 14 Nov 2008 13:21:37 +0100 Original-Received: from localhost ([127.0.0.1]:45226 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L0xf0-0004SL-NR for geh-help-gnu-emacs@m.gmane.org; Fri, 14 Nov 2008 07:20:26 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L0xei-0004SB-Vy for help-gnu-emacs@gnu.org; Fri, 14 Nov 2008 07:20:09 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L0xeh-0004Rz-Jv for help-gnu-emacs@gnu.org; Fri, 14 Nov 2008 07:20:07 -0500 Original-Received: from [199.232.76.173] (port=33160 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L0xeh-0004Rw-DY for help-gnu-emacs@gnu.org; Fri, 14 Nov 2008 07:20:07 -0500 Original-Received: from main.gmane.org ([80.91.229.2]:33572 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L0xeh-0008Mu-7k for help-gnu-emacs@gnu.org; Fri, 14 Nov 2008 07:20:07 -0500 Original-Received: from root by ciao.gmane.org with local (Exim 4.43) id 1L0xec-0003pD-PG for help-gnu-emacs@gnu.org; Fri, 14 Nov 2008 12:20:02 +0000 Original-Received: from p54af26b7.dip0.t-ipconnect.de ([84.175.38.183]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 14 Nov 2008 12:20:02 +0000 Original-Received: from tassilo by p54af26b7.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 14 Nov 2008 12:20:02 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 30 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: p54af26b7.dip0.t-ipconnect.de User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:eF1vO4nRpQZi0nKuEZ/MyafpJbc= X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:59776 Archived-At: "Lorenzo Isella" writes: Hi Lorenzo, > (defun my-latex-bindings () > (define-key LaTeX-mode-map [_] 'latex-subscript) > (define-key LaTeX-mode-map [^] 'latex-superscript) I think the key syntax is wrong. It's best to always use the `kbd' function. There you can enter the keys as they're printed by `C-h k'. (define-key LaTeX-mode-map (kbd "_") 'latex-subscript) (define-key LaTeX-mode-map (kbd "^") 'latex-superscript) > (define-key LaTeX-mode-map [(control down)] 'latex-next-section) > (define-key LaTeX-mode-map [(control up)] 'latex-previous-section) Although that's the right syntax, I assume that (define-key LaTeX-mode-map (kbd "") 'latex-next-section) (define-key LaTeX-mode-map (kbd "") 'latex-previous-section) is a bit easier to read and write. Bye, Tassilo -- [Emacs] is written in Lisp, which is the only computer language that is beautiful. -- Neal Stephenson, _In the Beginning was the Command Line_