branch: externals/auctex-cont-latexmk commit 8b6924f833a114418c11cdcd6c349087aee118a8 Author: Paul Nelson <ultr...@gmail.com> Commit: Paul Nelson <ultr...@gmail.com>
fix typo and tweak README.org --- README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 089d385feb..9cb1169ed5 100644 --- a/README.org +++ b/README.org @@ -13,10 +13,10 @@ Download this repository, install using =M-x package-install-file= (or package-v #+end_src Replace the keybinding with whatever you prefer (or delete it and just run the command via =M-x=). -You can tweak underlying the =latexmk= command via =M-x customize-variable czm-tex-compile-command=. +You can tweak the underlying =latexmk= command via =M-x customize-variable czm-tex-compile-command=. The command =czm-tex-compile-toggle= behaves the way that I prefer -- it enables both =czm-tex-compile-mode= and =flymake-mode=, restricting the backends for the latter to those coming from the former. Depending upon your preferences, you may wish to write your own "wrapper" for =czm-tex-compile-mode= akin to =czm-tex-compile-toggle=. -The way the Flymake backend works, it will update only when the latexmk process reaches a "watching for changes" state and the buffer is unmodified. The workflow to have errors and warnings reported is to save the file and wait a few seconds without editing. +The way the Flymake backend works, it will update only when the latexmk process reaches a "watching for changes" state and the buffer is unmodified. The workflow is thus to save the file and then wait a few seconds before editing further, then to use Flymake to navigate the errors. I also use =(setq flymake-show-diagnostics-at-end-of-line t)=, which displays the error/warning messages in the buffer itself. That's all. I prefer this workflow to the alternative in which one compiles the document manually via =TeX-command-master= (=C-c C-c=) and navigates the warning/error messages using =next-error= (=M-n=) and =previous-error= (=M-p=). It also gives a handy way to keep the .aux files up-to-date; I take advantage of this feature in the packages [[https://github.com/ultronozm/czm-preview.el][czm-preview.el]] and [[https://github.com/ultronozm/czm-tex-fold.el][czm-tex-fold.el]] to annotate t [...]