[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [AUCTeX] Re: Integrate latexmk into auctex
From: |
Ralf Angeli |
Subject: |
Re: [AUCTeX] Re: Integrate latexmk into auctex |
Date: |
Wed, 21 Jun 2006 22:59:23 +0200 |
* Sebastian Schubert (2006-06-20) writes:
> Ralf Angeli wrote:
>
>> * Sebastian Schubert (2006-06-17) writes:
>>
>>> Is it possible (ok this is emacs, so
>>> how is it possible) to set the Command C-c C-c all to eg F6?
>>
>> (add-hook 'LaTeX-mode-hook
>> (lambda ()
>> (local-set-key (kbd "<f6>") 'TeX-command-master)))
[...]
> Sorry, I was not clear enough. I would like to bind the execution of the new
> latexmk command ("C-c C-c all" for me) to F6. Do I have to write another
> function?
(add-hook 'LaTeX-mode-hook
(lambda ()
(local-set-key (kbd "<f6>") (lambda ()
(interactive)
(TeX-command-menu "all")))))
--
Ralf