mattn / vim-lsp-settings

Auto configurations for Language Server for vim-lsp
MIT License
1.3k stars 232 forks source link

Download latest texlab instead of specifying version #443

Closed dajohans closed 3 years ago

dajohans commented 3 years ago

The install-texlab.sh script downloads the texlab binary with curl applied to the following url

url="https://github.com/latex-lsp/texlab/releases/download/$version/texlab-x86_64-$os.tar.gz".

Currently, version is set to "v1.8.0" but the latest version available is "v3.2.0". Instead of manually inserting the version, it appears to be possible to instead use the following url

url="https://github.com/latex-lsp/texlab/releases/latest/download/texlab-x86_64-$os.tar.gz".

I just installed texlab without the version by using this url and it did indeed install version v3.2.0.

I realize that this isn't really an issue and I'm not asking for help. So maybe this should be a pull request? I don't know. Creating this issue is the first thing I ever do on a github account so I'm not sure about the culture around pull requests and issues. This seems like a small change so I'm not sure if it warrants a pull request.

heavenshell commented 3 years ago

PRs are very welcome 😉