From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Pascal J. Bourguignon" Newsgroups: gmane.emacs.help Subject: Re: Why some key binding don't work in Latex mode but they do in other modes? How fix? Date: Sun, 13 Jan 2013 10:29:11 +0100 Organization: Informatimago Message-ID: <8738y5cty0.fsf@kuiper.lan.informatimago.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1358069419 18747 80.91.229.3 (13 Jan 2013 09:30:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 13 Jan 2013 09:30:19 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jan 13 10:30:36 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TuJte-0003f0-Df for geh-help-gnu-emacs@m.gmane.org; Sun, 13 Jan 2013 10:30:30 +0100 Original-Received: from localhost ([::1]:44546 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TuJtO-0003kC-3B for geh-help-gnu-emacs@m.gmane.org; Sun, 13 Jan 2013 04:30:14 -0500 Original-Path: usenet.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 45 Original-X-Trace: individual.net /zWg5KmlmwK2NwVTvoFkQAnSjPF02jRBisvRzQqUPHqGU+O1a3eu+qAi1SHX/CKJ4W Cancel-Lock: sha1:YTc0MDg0ZTBjNGMwYzFiYTE1MjU0MmI4OTY3OTI4NGVkNDRhOTFmNA== sha1:XDl8/ziyVHnFAQruF9ZLL9imLeM= Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAQMAAABtzGvEAAAABlBMVEUAAAD///+l2Z/dAAAA oElEQVR4nK3OsRHCMAwF0O8YQufUNIQRGIAja9CxSA55AxZgFO4coMgYrEDDQZWPIlNAjwq9 033pbOBPtbXuB6PKNBn5gZkhGa86Z4x2wE67O+06WxGD/HCOGR0deY3f9Ijwwt7rNGNf6Oac l/GuZTF1wFGKiYYHKSFAkjIo1b6sCYS1sVmFhhhahKQssRjRT90ITWUk6vvK3RsPGs+M1RuR mV+hO/VvFAAAAABJRU5ErkJggg== X-Accept-Language: fr, es, en User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) Original-Xref: usenet.stanford.edu gnu.emacs.help:196285 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:88586 Archived-At: Chris Seberino writes: > Some custom key bindings work everywhere except for Latex mode....how > fix for Latex mode? i.e. how tell Latex mode not to stomp on my key > bindings? > > Specifically....I customized Ctrl-j but it doesn't work right in Latex > mode. Modes can redefine bindings locally. The EmacsManual says that the combination of C-c followed by a plain letter, and the function keys f5 through f9 are reserved for users. That means that you can expect that no other mode ever uses these. So if you don't want your bindings to be clobbered or shadowed, you need to choose one of those keys. (Now of course, f28 is probably not used by modes, if you map it on your keyboard). But you still can bind any key you want, just be prepared to have them shadowed. Since you can always access any command thru M-x, you can also write your own command to reset your binding. For example, I have: (defun reset-movement-keypad () "Locally set the keys , , , , and ." (interactive) (local-set-key (kbd "") 'beginning-of-buffer) (local-set-key (kbd "") 'end-of-buffer) (local-set-key (kbd "") 'scroll-down) (local-set-key (kbd "") 'scroll-up) (global-set-key (kbd "") 'beginning-of-buffer) (global-set-key (kbd "") 'end-of-buffer) (global-set-key (kbd "") 'scroll-down) (global-set-key (kbd "") 'scroll-up)) and when I enter a mode that changes the behavior of , I just have to M-x reset-movement-keypad RET to revert to my setting, and to add reset-movement-keypad to the hook of that mode. -- __Pascal Bourguignon__ http://www.informatimago.com/ A bad day in () is better than a good day in {}.