I am running a file in LaTeX (through TeX Live with Notepad++ editor) it is having error; when I am entering the errorstopmode e on the console the TeX file is not opening in the editor, but I want to open in NotePad++ to the error line,
how to change the default editor from LaTeX?
Asked
Active
Viewed 471 times
2
Phelype Oleinik
- 70,814
RCV
- 2,030
1 Answers
2
You need to set TEXEDIT, either in texmf.cnf or perhaps easier by setting the appropriate environmental variable. The latter can be done for testing at the command line
set TEXEDIT="<path>\notepad++.exe" -n%d %s
then fixed more permanently using the Control Panel.
Joseph Wright
- 259,911
- 34
- 706
- 1,036
set TEXEDIT=texworks --position=+%d "%s, I get TeXworks opening as requested – Joseph Wright Dec 06 '19 at 10:22notepad++in theTEXEDITits creating a new file ``-position=+4" and opening this file in the notepadd++, not going in the compiled file – RCV Dec 06 '19 at 10:28