aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/texlab.lua
Commit message (Collapse)AuthorAgeFilesLines
* docs: add deprecation notice to lua/lspconfig/configs #4189Justin M. Keyes2025-11-151-0/+7
|
* refactor: deprecate get_active_client_by_name #3697Justin M. Keyes2025-04-051-1/+1
|
* docs: fix typodundargoc2025-01-221-2/+2
|
* fix: outdated references to 'lspconfig.ui.windows' #3454Justin M. Keyes2024-11-251-1/+1
| | | | | | | | Problem: Some configs still reference 'lspconfig.ui.windows', which was removed in e6569c18c21be5166e4b9cc7530e828b8285c84e. Solution: Remove the references.
* fix: pass offset_encoding in some make params util functions(#3449)Rocky2024-11-241-3/+8
|
* refactor(texlab): clean commands function (#3430)glepnir2024-11-201-140/+87
|
* fix(texlab): use exec_cmd method in cleanArtifacts and cleanAuxiliary (#3428)Dimitris Dimitropoulos2024-11-101-2/+30
| | | Problem: see #3426 and #3427
* fix(texlab): use exec_cmd method (#3427)Dimitris Dimitropoulos2024-11-101-1/+8
| | | | | | | | Problem: vim.lsp.buf.execute_command has been deprecated in nightly Solution: add version check of nvim and use client:exec_command for nightly version --------- Co-authored-by: glepnir <glephunter@gmail.com>
* fix(texlab): remove deprecated texlab.auxDirectory #3255Thibault de Villèle2024-10-141-1/+0
| | | | | | | | | | | The configuration key 'texlab.auxDirextory' has been deprecated, in favor of 'texlab.build.auxDir', mirroring the latexmkrc's auxDir variable. https://github.com/latex-lsp/texlab/wiki/Configuration#deprecated-texlabauxdirectory texlab.build.auxDir has a default value of `.` in texlab if not explicitly set, or if the user has no `latexmkrc` file. https://github.com/latex-lsp/texlab/wiki/Configuration#texlabbuildauxdirectory
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-0/+249
Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.