Joost Kremers <[email protected]> writes:
> So I guess eval-after-load is the best method:
> (eval-after-load 'tex
>   '(progn
>      (assq-delete-all
>       (car (assoc "Biber" TeX-command-list))
>       TeX-command-list)))

FWIW I find John Wiegley's use-package very nice for these kind of
things.

Here's part of my setup:
(use-package tex
  :defer t
  :config
  (push '("Latexmk" "latexmk -f -interaction=nonstopmode %(latexmkmode) %t" 
TeX-run-TeX nil t
          :help "Run Latexmk on file")
        TeX-command-list)
  (dolist (i '("AmSTeX" "ConTeXt" "ConTeXt Full" "BibTeX" "Print" "Queue" 
"Index" "ChkTeX"))
    (setq TeX-command-list (assq-delete-all
                            (car (assoc i TeX-command-list))
                            TeX-command-list))))


-- 
Nico.

_______________________________________________
auctex mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/auctex

Reply via email to