Is it possible to open the compiled tex file in another folder in zathura? #7352
Unanswered
frisbro303
asked this question in
Q&A
Replies: 1 comment
-
Try adding
to your config. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to create a workflow for using latex with helix and zathura. I've created a solution that works well, based on things written at the github project. The only issue is, that it generates a lot of messy files. Using the
--output-directory=tmp
option, i'm able to output the compiled latex file to a temporary directory. My language config is shown below.Is it possible to open the generated pdf file in the directory in zathura?
Thanks for the awesome text editor.
best regards
`
[[language]]
name = "latex"
language-servers = ["texlab", "ltex-ls" ]
[language-server.ltex-ls]
command ="ltex-ls"
[language-server.texlab.config.texlab.build]
onSave = true
forwardSearchAfter = true
args = ["--output-directory=tmp"]
[language-server.texlab.config.texlab.forwardSearch]
executable = "zathura"
args = ["--synctex-forward", "%l:1:%f", "%p"]
[language-server.texlab.config.texlab.chktex]
onEdit = true
`
Beta Was this translation helpful? Give feedback.
All reactions