summaryrefslogtreecommitdiff
path: root/support/texlab/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/README.md')
-rw-r--r--support/texlab/README.md27
1 files changed, 20 insertions, 7 deletions
diff --git a/support/texlab/README.md b/support/texlab/README.md
index 24634bbd3f..c87618bb8e 100644
--- a/support/texlab/README.md
+++ b/support/texlab/README.md
@@ -1,21 +1,27 @@
-[![GitHub release](https://img.shields.io/github/release/latex-lsp/texlab)](https://github.com/latex-lsp/texlab/releases)
-[![Arch Linux](https://img.shields.io/archlinux/v/community/x86_64/texlab)](https://www.archlinux.org/packages/community/x86_64/texlab/)
+[![CI](https://github.com/latex-lsp/texlab/workflows/CI/badge.svg)](https://github.com/latex-lsp/texlab/actions)
+[![Coverage](https://codecov.io/gh/latex-lsp/texlab/branch/master/graph/badge.svg)](https://codecov.io/gh/latex-lsp/texlab)
[![Rust](https://img.shields.io/badge/rustc-1.39%2B-blue)](https://blog.rust-lang.org/2019/11/07/Rust-1.39.0.html)
-[![Build Status](https://dev.azure.com/latex-lsp/texlab/_apis/build/status/latex-lsp.texlab?branchName=master)](https://dev.azure.com/latex-lsp/texlab/_build/latest?definitionId=8&branchName=master)
-[![Coverage](https://img.shields.io/azure-devops/coverage/latex-lsp/texlab/8.svg?logo=azuredevops)](https://dev.azure.com/latex-lsp/texlab/_build/latest?definitionId=8&branchName=master)
[![Dependabot](https://api.dependabot.com/badges/status?host=github&repo=latex-lsp/texlab)](https://dependabot.com)
+[![GitHub release](https://img.shields.io/github/release/latex-lsp/texlab?label=github)](https://github.com/latex-lsp/texlab/releases)
+[![CTAN](https://img.shields.io/ctan/v/texlab)](https://ctan.org/pkg/texlab)
+[![Arch Linux](https://repology.org/badge/version-for-repo/arch/texlab.svg?header=arch%20linux)](https://www.archlinux.org/packages/community/x86_64/texlab/)
+[![NixOS Stable](https://repology.org/badge/version-for-repo/nix_stable/texlab.svg?header=nixos%20stable)](https://nixos.org/nixos/packages.html?channel=nixos-20.03&query=texlab)
+[![NixOS Unstable](https://repology.org/badge/version-for-repo/nix_unstable/texlab.svg?header=nixos%20unstable)](https://nixos.org/nixos/packages.html?channel=nixpkgs-unstable&query=texlab)
+[![Homebrew](https://repology.org/badge/version-for-repo/homebrew/texlab.svg?header=homebrew)](https://formulae.brew.sh/formula/texlab)
+[![Scoop](https://repology.org/badge/version-for-repo/scoop/texlab.svg?header=scoop)](https://scoop.sh/)
+
# TexLab
A cross-platform implementation of the [Language Server Protocol](https://microsoft.github.io/language-server-protocol)
providing rich cross-editing support for the [LaTeX](https://www.latex-project.org/) typesetting system.
We provide an [extension](https://github.com/latex-lsp/texlab-vscode) for [Visual Studio Code](https://code.visualstudio.com).
-Learn more about the project on our [website](https://texlab.netlify.com).
+Learn more about the project on our [website](https://texlab.netlify.app).
## Getting Started
-See the [installation chapter](https://texlab.netlify.com/docs) from our docs.
+See the [installation chapter](https://texlab.netlify.app/docs) from our docs.
## Building from Source
@@ -29,6 +35,13 @@ 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:
+
+```shell
+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.
@@ -38,7 +51,7 @@ by adding the absolute path of the `target/debug` folder to your `PATH` environm
TexLab has an extensive test suite of unit and integration tests. You can run them by executing
```shell
-cargo test --all
+cargo test
```
in the project folder.