Skip to content

Releases: rzukic/zed-latex

zed-latex v0.1.8

26 Jan 21:57
Compare
Choose a tag to compare

Changes

  • Improve autoconfig for okular so that forwards+inverse search works out of the box in a KDE+linux distro (#56)

zed-latex v0.1.7

20 Jan 17:29
Compare
Choose a tag to compare

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

12 Jan 16:15
Compare
Choose a tag to compare

Changes

zed-latex v0.1.5

07 Jan 23:46
Compare
Choose a tag to compare

Changes

  • Add space after % when toggling comment lines (#51 by @wangl-cc )

zed-latex v0.1.4

15 Dec 16:44
Compare
Choose a tag to compare

Changes

  • Improved highlighting for markers in commands like \label and \ref (#43)
  • Better context aware self closing brackets (#46)

zed-latex v0.1.3

28 Nov 15:25
Compare
Choose a tag to compare

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

18 Nov 20:28
Compare
Choose a tag to compare

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

07 Nov 15:46
Compare
Choose a tag to compare

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

31 Oct 13:12
Compare
Choose a tag to compare

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

21 Oct 20:56
Compare
Choose a tag to compare
  • Include task to mitigate current issue with build-on-save:
    image
  • Fix minor edge-case bug when attempting to download texlab (in a situation for which there is no Zed release anyway)