{"id":13484808,"url":"https://github.com/latex-lsp/texlab","last_synced_at":"2025-12-28T21:55:09.462Z","repository":{"id":37612189,"uuid":"162715445","full_name":"latex-lsp/texlab","owner":"latex-lsp","description":"An implementation of the Language Server Protocol for LaTeX","archived":false,"fork":false,"pushed_at":"2025-04-26T07:08:58.000Z","size":33849,"stargazers_count":1711,"open_issues_count":62,"forks_count":58,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-04-28T10:55:56.397Z","etag":null,"topics":["language-server","latex"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/latex-lsp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-12-21T13:08:47.000Z","updated_at":"2025-04-28T07:34:17.000Z","dependencies_parsed_at":"2023-09-24T22:13:26.719Z","dependency_job_id":"2d3ae4b8-5178-47ce-a659-9c6a9fe840df","html_url":"https://github.com/latex-lsp/texlab","commit_stats":{"total_commits":2151,"total_committers":31,"mean_commits":69.38709677419355,"dds":"0.36169223616922364","last_synced_commit":"1feead7e5b211a7d23fb218db6a726edb3cd18dd"},"previous_names":[],"tags_count":77,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latex-lsp%2Ftexlab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latex-lsp%2Ftexlab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latex-lsp%2Ftexlab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/latex-lsp%2Ftexlab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/latex-lsp","download_url":"https://codeload.github.com/latex-lsp/texlab/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254010830,"owners_count":21999004,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["language-server","latex"],"created_at":"2024-07-31T17:01:34.261Z","updated_at":"2025-12-28T21:55:09.398Z","avatar_url":"https://github.com/latex-lsp.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"[![CI](https://github.com/latex-lsp/texlab/workflows/CI/badge.svg)](https://github.com/latex-lsp/texlab/actions)\n[![Wiki](https://img.shields.io/badge/docs-Wiki-success)](https://github.com/latex-lsp/texlab/wiki)\n[![GitHub release](https://img.shields.io/github/release/latex-lsp/texlab?label=github)](https://github.com/latex-lsp/texlab/releases)\n[![CTAN](https://img.shields.io/ctan/v/texlab)](https://ctan.org/pkg/texlab)\n\n# TexLab\n\nA cross-platform implementation of the [Language Server Protocol](https://microsoft.github.io/language-server-protocol)\nproviding rich cross-editing support for the [LaTeX](https://www.latex-project.org/) typesetting system.\nThe server may be used with [any editor that implements the Language Server Protocol](https://microsoft.github.io/language-server-protocol/implementors/tools/).\n\n![Demo](images/demo.gif)\n\n## Getting Started\n\nIf your editor extension like does not install the TexLab server automatically,\nyou will need to install it manually.\nWe provide [precompiled binaries](https://github.com/latex-lsp/texlab/releases)\nfor Windows, Linux and macOS.\nAlternatively, you can build TexLab from source or install it using your package manager.\nFor a list of supported package managers, you can take a look at [Repology](https://repology.org/project/texlab/versions):\n\n[![Packaging status](https://repology.org/badge/vertical-allrepos/texlab.svg)](https://repology.org/project/texlab/versions)\n\n### Requirements\n\nA [TeX distribution](https://www.latex-project.org/get/#tex-distributions) is _not_ strictly required\nto use the server but TexLab cannot compile your documents without one.\nTexLab supports compiling using [Tectonic](https://tectonic-typesetting.github.io/).\nFor an example configuration, please see [here](https://github.com/latex-lsp/texlab/wiki/Tectonic).\n\nOn Windows, you may need to install [Microsoft Visual C++ Redistributable for Visual Studio 2015](https://www.microsoft.com/en-US/download/details.aspx?id=48145).\n\n### Building from Source\n\nYou will need to install the following dependencies to compile the server:\n\n- A recent, stable version of [Rust](https://rustup.rs/)\n\nThen run the following command in the project folder:\n\n```shell\ncargo build --release\n```\n\nAvoid installing `texlab` from [crates.io](https://crates.io/crates/texlab)\nbecause we don't publish new versions of the server to the registry, anymore.\nInstead, you can use\n\n```shell\ncargo install --git https://github.com/latex-lsp/texlab --locked --tag \u003cinsert version here\u003e\n```\n\n## Usage\n\nAfter installing an editor extension, you can simply start editing LaTeX files. All editing features work out-of-the-box over all files in the currently opened workspace.\nThere is no need for magic comments like `%!TEX root`\nand TexLab should figure out the dependencies of a file on its own.\nNote that you may need to set the `texlab.rootDirectory` option for some multi-folder projects.\n\nTexLab features a variety of options which can be used to configure features like building or forward search.\n\nSee the [Wiki](https://github.com/latex-lsp/texlab/wiki) for more information.\n\n## Development\n\nYou can create a debug build by building the server without the `--release` flag.\nThe resulting build can be used with the [Visual Studio Code extension](https://github.com/latex-lsp/texlab-vscode)\nby adding the absolute path of the `target/debug` folder to your `PATH` environment variable.\n\nTexLab has an extensive test suite of unit and integration tests. You can run them by executing\n\n```shell\ncargo test\n```\n\nin the project folder.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.\n\n## Maintainers\n\n- Patrick Förster (patrick.foerster@outlook.de)\n\n## License\n\n[GPL-3.0](https://choosealicense.com/licenses/gpl-3.0/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flatex-lsp%2Ftexlab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flatex-lsp%2Ftexlab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flatex-lsp%2Ftexlab/lists"}