Hi Andrzej, 2017-01-19 23:35 GMT+01:00 Andrzej J. Maciejewski <[email protected]>: > Hello, > is there a way that "next error" does not split the current frame but > instead will appear in an another frame? > Simply, I do not like to work with split frame and I use to compile the > source frequently, so I have to frequently close the help buffer.
The setup of error overview is controlled by the `TeX-error-overview-setup' option. If this is set to `separate-frame' the error overview will be shown in a new frame, see https://www.gnu.org/software/auctex/manual/auctex.html#index-TeX_002derror_002doverview_002dsetup or directly in Emacs with (info "(auctex)Error overview"). You can either set this variable with customize: M-x customize variable RET TeX-error-overview-setup RET click on "Value Menu" and select "Error overview in separate frame", or you can add the following line to your init file: (setq TeX-error-overview-setup 'separate-frame) Hope this helps. Bye, Mosè _______________________________________________ auctex mailing list [email protected] https://lists.gnu.org/mailman/listinfo/auctex
