Though I know how to set a global key-binding in Emacs, I find it hard to even Google out the code for a local (minor-mode specific) key-binding. For instance, I have this code in my .emacs:

;; PDFLaTeX from AucTeX
(global-set-key (kbd "C-c M-p")
        (lambda ()
          (interactive)
          (shell-command (concat "pdflatex " buffer-file-name))))

I don't want to set it globally. Is there a function like local-set-key?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

To bind a key in a mode, you need to wait for the mode to be loaded before defining the key. One could require the mode, or use eval-after-load

   (eval-after-load 'latex 
                    '(define-key LaTeX-mode-map [(tab)] 'outline-cycle)))

don't forget both ': eval-after-load is not a macro, and need them.

link|improve this answer
feedback

More and more I find myself going to the Emacs Wiki for help: http://www.emacswiki.org/emacs/KeyBindingDiscussion

There it shows that you can add a key binding to a mode key map and also shows how to find that map.

link|improve this answer
Yepp... I saw that one already, but I get Symbol's value as variable is void: LaTeX-mode-map all the time. Hmmm... – aL3xa Mar 31 '11 at 13:30
feedback

You need to identify the key map for that mode (for example, LaTeX-mode-map) and use the function define-key. As an example, along with activating outline-minor-mode within LaTeX mode, I have:

  (define-key LaTeX-mode-map [(tab)] 'outline-cycle))

In this case the major mode (LaTeX) holds the key binding, but there is also an outline-minor-mode-map.

link|improve this answer
2  
You need to wait for latex mode to be loaded to do that: (eval-after-load 'latex '(define-key LaTeX-mode-map [(tab)] 'outline-cycle))) – Rémi Mar 31 '11 at 14:57
@Remi, thanks a lot, that was hanging me down. Provide your comment as an answer so I can check it. =) – aL3xa Mar 31 '11 at 15:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.