An implementation of the Language Server Protocol for LaTeX
Find a file
2020-05-11 13:13:32 +02:00
.github/workflows Add deployment CI workflow 2020-05-11 11:53:58 +02:00
benches Undo crate splitting in favor of crates.io release 2020-05-05 17:32:56 +02:00
crates Use bibutils-sys from crates.io 2020-05-09 19:49:41 +02:00
data Undo crate splitting in favor of crates.io release 2020-05-05 17:32:56 +02:00
src Prevent building the same file twice 2020-05-10 12:53:56 +02:00
tests/integration Undo crate splitting in favor of crates.io release 2020-05-05 17:32:56 +02:00
.gitattributes Update .gitattributes 2020-05-11 13:13:32 +02:00
.gitignore Fix clippy warnings 2019-12-28 19:29:36 +01:00
build.rs Undo crate splitting in favor of crates.io release 2020-05-05 17:32:56 +02:00
Cargo.lock Merge pull request #232 from latex-lsp/dependabot/cargo/serde-1.0.110 2020-05-11 09:55:02 +00:00
Cargo.toml Bump version to v2.1.0 2020-05-10 21:31:03 +02:00
CHANGELOG.md Bump version to v2.1.0 2020-05-10 21:31:03 +02:00
CONTRIBUTING.md Update readme 2019-01-02 18:55:35 +01:00
LICENSE Change license to GPLv3 2019-11-27 17:40:27 +01:00
README.md Update CI and coverage badges 2020-05-11 11:53:58 +02:00
rust-toolchain Use stable Rust toolchain 2019-11-08 16:36:23 +01:00
texlab.1 Add basic man page 2019-12-01 10:28:24 +01:00

GitHub release CTAN Arch Linux Homebrew Rust CI Coverage Dependabot

TexLab

A cross-platform implementation of the Language Server Protocol providing rich cross-editing support for the LaTeX typesetting system. We provide an extension for Visual Studio Code.

Learn more about the project on our website.

Getting Started

See the installation chapter from our docs.

Building from Source

You will need to install the following dependencies to compile the server:

Then run the following command in the project folder:

cargo build --release

Alternatively, Rust users can run the following command without having to clone this repository:

cargo install --git https://github.com/latex-lsp/texlab.git

Development

You can create a debug build by building the server without the --release flag. The resulting build can be used with the Visual Studio Code extension by adding the absolute path of the target/debug folder to your PATH environment variable.

TexLab has an extensive test suite of unit and integration tests. You can run them by executing

cargo test --all

in the project folder.

Contributing

See CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.