Skip to content

zed-latex v0.1.2

Compare
Choose a tag to compare
@lnay lnay released this 18 Nov 20:28
· 42 commits to main since this release

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/",
        ]
      }
    }
  }
}