Releases: rzukic/zed-latex
zed-latex v0.1.8
zed-latex v0.1.7
Changes
- Improve autoconfig so that inverse-search (with sioyek or zathura) works in more scenarios out of the box, such as when zed is installed with flatpak or certain package managers on Linux (#54)
zed-latex v0.1.6
zed-latex v0.1.5
zed-latex v0.1.4
zed-latex v0.1.3
Fix inverse search in auto-config with sioyek.
General unrelated recommendation to users: for spell/grammar checking in LaTeX documents in Zed, try the "ltex" extension.
zed-latex v0.1.2
This release adds a new setting to add extra directories to TEXINPUTS when invoking texlab
affecting some LSP functionality and LaTeX compilation. The user may want to consider alternatives before using this setting.
Example:
{
"lsp": {
"texlab": {
"initialization_options": {
// experimental: visit zed-latex wiki on github to check if setting location has moved
"extra_tex_inputs": [
"/extra/path/1/",
"/extra/path/2/",
]
}
}
}
}
zed-latex v0.1.1
Version 0.0.7 of this extension allowed users to have texlab
without explicitly installing it themselves. Users taking advantage of this would then not be able to use texlab
when launching Zed offline, even if this extension downloaded a texlab
release previously.
This PR addresses this by adding a fallback for network issues which checks if it can find any versions of texlab
that it previously downloaded.
Minor extra: duplicate code removed.
zed-latex v0.1.0
Jump to v0.1.0 to signify a noticeable change in experience.
This release aims to provide a default out of the box experience building LaTeX documents without user configuration when a suitable previewer is detected. With a fresh Zed project with a LaTeX file, a suitable PDF previewer, and no custom LSP configuration in the Zed settings will now have build-on-save and forward-search after save set up automatically. However any setting explicitly set by the user takes priority. More details in the wiki to come shortly.
Breaking change
This extension now automatically may make changes to texlab
settings, to disable this set "lsp.texlab.settings.texlab.forwardSearch" to an empty object {}
.
zed-latex v0.0.8
- Include task to mitigate current issue with build-on-save:
- Fix minor edge-case bug when attempting to download
texlab
(in a situation for which there is no Zed release anyway)