From b81452078f9f12a94347839033b0f16ffe792abe Mon Sep 17 00:00:00 2001 From: ROCKTAKEY Date: Sat, 3 Aug 2024 18:09:01 +0900 Subject: [PATCH 1/5] Add variable for texlab.experimental.labelDefinitionCommands --- README.org | 67 +++++++++++++++++++++++---------------------- lsp-latex.el | 77 +++++++++++++++++++++++++++++----------------------- 2 files changed, 77 insertions(+), 67 deletions(-) diff --git a/README.org b/README.org index 1b25ac7..edafc2c 100644 --- a/README.org +++ b/README.org @@ -40,39 +40,40 @@ While =lsp-tex.el=, included by [[https://github.com/emacs-lsp/lsp-mode][lsp-mod ** Others, provided by texlab server These variables are connected to Texlab configuration variables. See also [[https://github.com/latex-lsp/texlab/wiki/Configuration][Texlab official wiki]]. -| Custom variable in Emacs | Configuration provided by Texlab | -|-------------------------------------------------+--------------------------------------------| -| lsp-latex-root-directory | texlab.rootDirectory | -| lsp-latex-build-executable | texlab.build.executable | -| lsp-latex-build-args | texlab.build.args | -| lsp-latex-build-forward-search-after | texlab.build.forwardSearchAfter | -| lsp-latex-build-on-save | texlab.build.onSave | -| lsp-latex-build-aux-directory | texlab.build.auxDirectory | -| lsp-latex-build-log-directory | texlab.build.logDirectory | -| lsp-latex-build-pdf-directory | texlab.build.pdfDirectory | -| lsp-latex-forward-search-executable | texlab.forwardSearch.executable | -| lsp-latex-forward-search-args | texlab.forwardSearch.args | -| lsp-latex-chktex-additional-args | texlab.chktex.additionalArgs | -| lsp-latex-chktex-on-open-and-save | texlab.chktex.onOpenAndSave | -| lsp-latex-chktex-on-edit | texlab.chktex.onEdit | -| lsp-latex-diagnostics-delay | texlab.diagnosticsDelay | -| lsp-latex-diagnostics-allowed-patterns | texlab.diagnostics.allowedPatterns | -| lsp-latex-diagnostics-ignored-patterns | texlab.diagnostics.ignoredPatterns | -| lsp-latex-symbol-allowed-patterns | texlab.symbol.allowedPatterns | -| lsp-latex-symbol-ignored-patterns | texlab.symbol.ignoredPatterns | -| lsp-latex-bibtex-formatter-line-length | texlab.formatterLineLength | -| lsp-latex-bibtex-formatter | texlab.bibtexFormatter | -| lsp-latex-latex-formatter | texlab.latexFormatter | -| lsp-latex-latexindent-local | texlab.latexindent.local | -| lsp-latex-latexindent-modify-line-breaks | texlab.latexindent.modifyLineBreaks | -| lsp-latex-completion-matcher | texlab.completion.matcher | -| lsp-latex-inlay-hints-label-definitions | texlab.inlayHints.labelDefinitions | -| lsp-latex-inlay-hints-label-references | texlab.inlayHints.labelReferences | -| lsp-latex-experimental-math-environments | texlab.experimental.mathEnvironments | -| lsp-latex-experimental-enum-environments | texlab.experimental.enumEnvironments | -| lsp-latex-experimental-verbatim-environments | texlab.experimental.verbatimEnvironments | -| lsp-latex-experimental-citation-commands | texlab.experimental.citationCommands | -| lsp-latex-experimental-label-reference-commands | texlab.experimental.labelReferenceCommands | +| Custom variable in Emacs | Configuration provided by Texlab | +|--------------------------------------------------+---------------------------------------------| +| lsp-latex-root-directory | texlab.rootDirectory | +| lsp-latex-build-executable | texlab.build.executable | +| lsp-latex-build-args | texlab.build.args | +| lsp-latex-build-forward-search-after | texlab.build.forwardSearchAfter | +| lsp-latex-build-on-save | texlab.build.onSave | +| lsp-latex-build-aux-directory | texlab.build.auxDirectory | +| lsp-latex-build-log-directory | texlab.build.logDirectory | +| lsp-latex-build-pdf-directory | texlab.build.pdfDirectory | +| lsp-latex-forward-search-executable | texlab.forwardSearch.executable | +| lsp-latex-forward-search-args | texlab.forwardSearch.args | +| lsp-latex-chktex-additional-args | texlab.chktex.additionalArgs | +| lsp-latex-chktex-on-open-and-save | texlab.chktex.onOpenAndSave | +| lsp-latex-chktex-on-edit | texlab.chktex.onEdit | +| lsp-latex-diagnostics-delay | texlab.diagnosticsDelay | +| lsp-latex-diagnostics-allowed-patterns | texlab.diagnostics.allowedPatterns | +| lsp-latex-diagnostics-ignored-patterns | texlab.diagnostics.ignoredPatterns | +| lsp-latex-symbol-allowed-patterns | texlab.symbol.allowedPatterns | +| lsp-latex-symbol-ignored-patterns | texlab.symbol.ignoredPatterns | +| lsp-latex-bibtex-formatter-line-length | texlab.formatterLineLength | +| lsp-latex-bibtex-formatter | texlab.bibtexFormatter | +| lsp-latex-latex-formatter | texlab.latexFormatter | +| lsp-latex-latexindent-local | texlab.latexindent.local | +| lsp-latex-latexindent-modify-line-breaks | texlab.latexindent.modifyLineBreaks | +| lsp-latex-completion-matcher | texlab.completion.matcher | +| lsp-latex-inlay-hints-label-definitions | texlab.inlayHints.labelDefinitions | +| lsp-latex-inlay-hints-label-references | texlab.inlayHints.labelReferences | +| lsp-latex-experimental-math-environments | texlab.experimental.mathEnvironments | +| lsp-latex-experimental-enum-environments | texlab.experimental.enumEnvironments | +| lsp-latex-experimental-verbatim-environments | texlab.experimental.verbatimEnvironments | +| lsp-latex-experimental-citation-commands | texlab.experimental.citationCommands | +| lsp-latex-experimental-label-reference-commands | texlab.experimental.labelReferenceCommands | +| lsp-latex-experimental-label-definition-commands | texlab.experimental.labelDefinitionCommands | * Build ** ~lsp-latex-build~ diff --git a/lsp-latex.el b/lsp-latex.el index 2026987..d494ece 100644 --- a/lsp-latex.el +++ b/lsp-latex.el @@ -148,39 +148,40 @@ ;; These variables are connected to Texlab configuration variables. See ;; also [Texlab official wiki]. -;; Custom variable in Emacs Configuration provided by Texlab -;; --------------------------------------------------------------------------------------------- -;; lsp-latex-root-directory texlab.rootDirectory -;; lsp-latex-build-executable texlab.build.executable -;; lsp-latex-build-args texlab.build.args -;; lsp-latex-build-forward-search-after texlab.build.forwardSearchAfter -;; lsp-latex-build-on-save texlab.build.onSave -;; lsp-latex-build-aux-directory texlab.build.auxDirectory -;; lsp-latex-build-log-directory texlab.build.logDirectory -;; lsp-latex-build-pdf-directory texlab.build.pdfDirectory -;; lsp-latex-forward-search-executable texlab.forwardSearch.executable -;; lsp-latex-forward-search-args texlab.forwardSearch.args -;; lsp-latex-chktex-additional-args texlab.chktex.additionalArgs -;; lsp-latex-chktex-on-open-and-save texlab.chktex.onOpenAndSave -;; lsp-latex-chktex-on-edit texlab.chktex.onEdit -;; lsp-latex-diagnostics-delay texlab.diagnosticsDelay -;; lsp-latex-diagnostics-allowed-patterns texlab.diagnostics.allowedPatterns -;; lsp-latex-diagnostics-ignored-patterns texlab.diagnostics.ignoredPatterns -;; lsp-latex-symbol-allowed-patterns texlab.symbol.allowedPatterns -;; lsp-latex-symbol-ignored-patterns texlab.symbol.ignoredPatterns -;; lsp-latex-bibtex-formatter-line-length texlab.formatterLineLength -;; lsp-latex-bibtex-formatter texlab.bibtexFormatter -;; lsp-latex-latex-formatter texlab.latexFormatter -;; lsp-latex-latexindent-local texlab.latexindent.local -;; lsp-latex-latexindent-modify-line-breaks texlab.latexindent.modifyLineBreaks -;; lsp-latex-completion-matcher texlab.completion.matcher -;; lsp-latex-inlay-hints-label-definitions texlab.inlayHints.labelDefinitions -;; lsp-latex-inlay-hints-label-references texlab.inlayHints.labelReferences -;; lsp-latex-experimental-math-environments texlab.experimental.mathEnvironments -;; lsp-latex-experimental-enum-environments texlab.experimental.enumEnvironments -;; lsp-latex-experimental-verbatim-environments texlab.experimental.verbatimEnvironments -;; lsp-latex-experimental-citation-commands texlab.experimental.citationCommands -;; lsp-latex-experimental-label-reference-commands texlab.experimental.labelReferenceCommands +;; Custom variable in Emacs Configuration provided by Texlab +;; ----------------------------------------------------------------------------------------------- +;; lsp-latex-root-directory texlab.rootDirectory +;; lsp-latex-build-executable texlab.build.executable +;; lsp-latex-build-args texlab.build.args +;; lsp-latex-build-forward-search-after texlab.build.forwardSearchAfter +;; lsp-latex-build-on-save texlab.build.onSave +;; lsp-latex-build-aux-directory texlab.build.auxDirectory +;; lsp-latex-build-log-directory texlab.build.logDirectory +;; lsp-latex-build-pdf-directory texlab.build.pdfDirectory +;; lsp-latex-forward-search-executable texlab.forwardSearch.executable +;; lsp-latex-forward-search-args texlab.forwardSearch.args +;; lsp-latex-chktex-additional-args texlab.chktex.additionalArgs +;; lsp-latex-chktex-on-open-and-save texlab.chktex.onOpenAndSave +;; lsp-latex-chktex-on-edit texlab.chktex.onEdit +;; lsp-latex-diagnostics-delay texlab.diagnosticsDelay +;; lsp-latex-diagnostics-allowed-patterns texlab.diagnostics.allowedPatterns +;; lsp-latex-diagnostics-ignored-patterns texlab.diagnostics.ignoredPatterns +;; lsp-latex-symbol-allowed-patterns texlab.symbol.allowedPatterns +;; lsp-latex-symbol-ignored-patterns texlab.symbol.ignoredPatterns +;; lsp-latex-bibtex-formatter-line-length texlab.formatterLineLength +;; lsp-latex-bibtex-formatter texlab.bibtexFormatter +;; lsp-latex-latex-formatter texlab.latexFormatter +;; lsp-latex-latexindent-local texlab.latexindent.local +;; lsp-latex-latexindent-modify-line-breaks texlab.latexindent.modifyLineBreaks +;; lsp-latex-completion-matcher texlab.completion.matcher +;; lsp-latex-inlay-hints-label-definitions texlab.inlayHints.labelDefinitions +;; lsp-latex-inlay-hints-label-references texlab.inlayHints.labelReferences +;; lsp-latex-experimental-math-environments texlab.experimental.mathEnvironments +;; lsp-latex-experimental-enum-environments texlab.experimental.enumEnvironments +;; lsp-latex-experimental-verbatim-environments texlab.experimental.verbatimEnvironments +;; lsp-latex-experimental-citation-commands texlab.experimental.citationCommands +;; lsp-latex-experimental-label-reference-commands texlab.experimental.labelReferenceCommands +;; lsp-latex-experimental-label-definition-commands texlab.experimental.labelDefinitionCommands ;; [Texlab official wiki] @@ -945,6 +946,13 @@ For example, \"cite\" is meet the condition. Note that backslash is not needed." :type '(repeat string) :version "3.5.0") +(defcustom lsp-latex-experimental-label-definition-commands '() + "List of command name which should be regarded as \"\\label\"-like command. +For example, \"label\" is meet the condition. Note that backslash is not needed." + :group 'lsp-latex + :type '(repeat string) + :version "3.8.0") + (defcustom lsp-latex-experimental-label-reference-commands '() "List of command name which should be regarded as \"\\ref\"-like command. For example, \"ref\" is meet the condition. Note that backslash is not needed." @@ -1000,7 +1008,8 @@ should be vector." ("texlab.experimental.enumEnvironments" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-enum-environments)) ("texlab.experimental.verbatimEnvironments" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-verbatim-environments)) ("texlab.experimental.citationCommands" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-citation-commands)) - ("texlab.experimental.labelReferenceCommands" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-label-reference-commands))))) + ("texlab.experimental.labelDefinitionCommands" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-label-definition-commands)) + ("texlab.experimental.labelReferenceCommands" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-label-reference-commands)) (lsp-latex-setup-variables) From 8fba02166ad7ae2961a4e652a788f5d7ba1f1fa3 Mon Sep 17 00:00:00 2001 From: ROCKTAKEY Date: Sat, 3 Aug 2024 18:29:56 +0900 Subject: [PATCH 2/5] Remove texlab.rootDirectory for texlab-5.16.1 --- README.org | 1 - lsp-latex.el | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.org b/README.org index edafc2c..b9fa149 100644 --- a/README.org +++ b/README.org @@ -42,7 +42,6 @@ These variables are connected to Texlab configuration variables. See also [[https://github.com/latex-lsp/texlab/wiki/Configuration][Texlab official wiki]]. | Custom variable in Emacs | Configuration provided by Texlab | |--------------------------------------------------+---------------------------------------------| -| lsp-latex-root-directory | texlab.rootDirectory | | lsp-latex-build-executable | texlab.build.executable | | lsp-latex-build-args | texlab.build.args | | lsp-latex-build-forward-search-after | texlab.build.forwardSearchAfter | diff --git a/lsp-latex.el b/lsp-latex.el index d494ece..b34e2d2 100644 --- a/lsp-latex.el +++ b/lsp-latex.el @@ -150,7 +150,6 @@ ;; also [Texlab official wiki]. ;; Custom variable in Emacs Configuration provided by Texlab ;; ----------------------------------------------------------------------------------------------- -;; lsp-latex-root-directory texlab.rootDirectory ;; lsp-latex-build-executable texlab.build.executable ;; lsp-latex-build-args texlab.build.args ;; lsp-latex-build-forward-search-after texlab.build.forwardSearchAfter @@ -660,6 +659,7 @@ See also `lsp-completion-sort-initial-results'." :risky t :type '(choice string (const nil))) +(make-obsolete-variable 'lsp-latex-root-directory "Texlab 5.16.1 and more ignore this variable." "3.8.0") (defcustom lsp-latex-build-executable "latexmk" "Build command used on `lsp-latex-build'." From 4ac402684274292aa656d339422e47ba241c6e9f Mon Sep 17 00:00:00 2001 From: ROCKTAKEY Date: Sat, 3 Aug 2024 21:41:11 +0900 Subject: [PATCH 3/5] Add some variables for texlab-5.17.0 - Add a variable lsp-latex-experimental-label-reference-prefixes - Add a variable lsp-latex-experimental-label-definition-prefixes --- README.org | 2 ++ lsp-latex.el | 31 ++++++++++++++++++++++++++++++- test/lsp-latex-test.el | 14 ++++++++++++++ 3 files changed, 46 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index b9fa149..125ebc8 100644 --- a/README.org +++ b/README.org @@ -73,6 +73,8 @@ See also [[https://github.com/latex-lsp/texlab/wiki/Configuration][Texlab offici | lsp-latex-experimental-citation-commands | texlab.experimental.citationCommands | | lsp-latex-experimental-label-reference-commands | texlab.experimental.labelReferenceCommands | | lsp-latex-experimental-label-definition-commands | texlab.experimental.labelDefinitionCommands | +| lsp-latex-experimental-label-reference-prefixes | texlab.experimental.labelReferencePrefixes | +| lsp-latex-experimental-label-definition-prefixes | texlab.experimental.labelDefinitionPrefixes | * Build ** ~lsp-latex-build~ diff --git a/lsp-latex.el b/lsp-latex.el index b34e2d2..6dab520 100644 --- a/lsp-latex.el +++ b/lsp-latex.el @@ -181,6 +181,8 @@ ;; lsp-latex-experimental-citation-commands texlab.experimental.citationCommands ;; lsp-latex-experimental-label-reference-commands texlab.experimental.labelReferenceCommands ;; lsp-latex-experimental-label-definition-commands texlab.experimental.labelDefinitionCommands +;; lsp-latex-experimental-label-reference-prefixes texlab.experimental.labelReferencePrefixes +;; lsp-latex-experimental-label-definition-prefixes texlab.experimental.labelDefinitionPrefixes ;; [Texlab official wiki] @@ -960,13 +962,38 @@ For example, \"ref\" is meet the condition. Note that backslash is not needed." :type '(repeat string) :version "3.7.0") +(defcustom lsp-latex-experimental-label-definition-prefixes '() + "List of prefix for the label name for definition. +Each element should be (COMMAND PREFIX), where COMMAND is string regarded as +reference like \"label\", and where PREFIX should be string like \"fig:\"." + :group 'lsp-latex + :type '(repeat (list string string)) + :version "3.8.0") + +(defcustom lsp-latex-experimental-label-reference-prefixes '() + "List of prefix for the label name for reference. +Same as `lsp-latex-experimental-label-definition-prefixes' +except COMMAND should be string regarded as definition, like \"ref\"." + :group 'lsp-latex + :type '(repeat (list string string)) + :version "3.8.0") + + +(defun lsp-latex--vectorize-recursive (list-or-atom) + "Transform recursive list LIST-OR-ATOM to recursive vector. +When LIST-OR-ATOM is atom, this function returns it as-is." + (if (listp list-or-atom) + (apply #'vector + (mapcar #'lsp-latex--vectorize-recursive list-or-atom)) + list-or-atom)) + (defun lsp-latex--getter-vectorize-list (symbol) "Make list in SYMBOL into vector. This function is thoughted to be used with `apply-partially'. This function is used for the treatment before `json-serialize', because `json-serialize' cannot recognize normal list as array of json." - (vconcat (eval symbol))) + (lsp-latex--vectorize-recursive (eval symbol))) (defun lsp-latex--diagnostics-allowed-patterns () "Get `lsp-latex-build-args' with changing to vector. @@ -1010,6 +1037,8 @@ should be vector." ("texlab.experimental.citationCommands" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-citation-commands)) ("texlab.experimental.labelDefinitionCommands" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-label-definition-commands)) ("texlab.experimental.labelReferenceCommands" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-label-reference-commands)) + ("texlab.experimental.labelDefinitionPrefixes" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-label-definition-prefixes)) + ("texlab.experimental.labelReferencePrefixes" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-experimental-label-reference-prefixes))))) (lsp-latex-setup-variables) diff --git a/test/lsp-latex-test.el b/test/lsp-latex-test.el index 97af44d..b39973d 100644 --- a/test/lsp-latex-test.el +++ b/test/lsp-latex-test.el @@ -28,5 +28,19 @@ (require 'lsp-latex) +(ert-deftest lsp-latex--vectorize-recursive-simple () + (should (equal (lsp-latex--vectorize-recursive '()) + [])) + (should (equal (lsp-latex--vectorize-recursive '(a b c)) + [a b c]))) + +(ert-deftest lsp-latex--vectorize-recursive-recursive () + (should (equal (lsp-latex--vectorize-recursive '(a (b) (c))) + [a [b] [c]])) + (should (equal (lsp-latex--vectorize-recursive '((a b) c)) + [[a b] c])) + (should (equal (lsp-latex--vectorize-recursive '((a (b d (e f g))) c)) + [[a [b d [e f g]]] c]))) + (provide 'lsp-latex-test) ;;; lsp-latex-test.el ends here From a60ffaeb240d2d554c9279b7c0ef2632960f5f3b Mon Sep 17 00:00:00 2001 From: ROCKTAKEY Date: Sat, 3 Aug 2024 23:29:22 +0900 Subject: [PATCH 4/5] Add lsp-latex-build-use-file-list --- README.org | 1 + lsp-latex.el | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/README.org b/README.org index 125ebc8..5c4e688 100644 --- a/README.org +++ b/README.org @@ -46,6 +46,7 @@ See also [[https://github.com/latex-lsp/texlab/wiki/Configuration][Texlab offici | lsp-latex-build-args | texlab.build.args | | lsp-latex-build-forward-search-after | texlab.build.forwardSearchAfter | | lsp-latex-build-on-save | texlab.build.onSave | +| lsp-latex-build-use-file-list | texlab.build.useFileList | | lsp-latex-build-aux-directory | texlab.build.auxDirectory | | lsp-latex-build-log-directory | texlab.build.logDirectory | | lsp-latex-build-pdf-directory | texlab.build.pdfDirectory | diff --git a/lsp-latex.el b/lsp-latex.el index 6dab520..baa388e 100644 --- a/lsp-latex.el +++ b/lsp-latex.el @@ -154,6 +154,7 @@ ;; lsp-latex-build-args texlab.build.args ;; lsp-latex-build-forward-search-after texlab.build.forwardSearchAfter ;; lsp-latex-build-on-save texlab.build.onSave +;; lsp-latex-build-use-file-list texlab.build.useFileList ;; lsp-latex-build-aux-directory texlab.build.auxDirectory ;; lsp-latex-build-log-directory texlab.build.logDirectory ;; lsp-latex-build-pdf-directory texlab.build.pdfDirectory @@ -703,6 +704,12 @@ If you use latexmk, use \"-outdir\" flag. This variable is obsoleted since Texlab 3.0.0.") +(defcustom lsp-latex-build-use-file-list nil + "Whether to use \".fls\" file for project detection or not." + :group 'lsp-latex + :type 'boolean + :version "3.8.0") + (defcustom lsp-latex-build-aux-directory "." "Directory to which built file is put. Note that you should change `lsp-latex-build-args' to change output directory. @@ -1010,6 +1017,7 @@ should be vector." ("texlab.build.args" ,(apply-partially #'lsp-latex--getter-vectorize-list 'lsp-latex-build-args)) ("texlab.build.forwardSearchAfter" lsp-latex-build-forward-search-after t) ("texlab.build.onSave" lsp-latex-build-on-save t) + ("texlab.build.useFileList" lsp-latex-build-use-file-list t) ("texlab.build.auxDirectory" lsp-latex-build-aux-directory) ("texlab.build.logDirectory" lsp-latex-build-log-directory) ("texlab.build.pdfDirectory" lsp-latex-build-pdf-directory) From e566917aeaad95ddf723b45d529ce19250b91c0a Mon Sep 17 00:00:00 2001 From: ROCKTAKEY Date: Sat, 3 Aug 2024 23:33:16 +0900 Subject: [PATCH 5/5] Update version --- README.org | 2 +- lsp-latex.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 5c4e688..10b0307 100644 --- a/README.org +++ b/README.org @@ -4,7 +4,7 @@ [[https://melpa.org/#/lsp-latex][file:https://melpa.org/packages/lsp-latex-badge.svg]] * lsp-mode client for Texlab. While =lsp-tex.el=, included by [[https://github.com/emacs-lsp/lsp-mode][lsp-mode]], provides minimal setting for [[https://github.com/latex-lsp/texlab][Texlab]], -=lsp-latex.el= provides full features of [[https://github.com/latex-lsp/texlab][Texlab]] v5.13.1. +=lsp-latex.el= provides full features of [[https://github.com/latex-lsp/texlab][Texlab]] v5.19.0. * How to Use? - First, you have to install Texlab. diff --git a/lsp-latex.el b/lsp-latex.el index baa388e..ed4ebc9 100644 --- a/lsp-latex.el +++ b/lsp-latex.el @@ -5,7 +5,7 @@ ;; Author: ROCKTAKEY ;; Keywords: languages, tex -;; Version: 3.7.1 +;; Version: 3.8.0 ;; Package-Requires: ((emacs "27.1") (lsp-mode "6.0") (consult "0.35")) ;; URL: https://github.com/ROCKTAKEY/lsp-latex @@ -85,7 +85,7 @@ ;; While `lsp-tex.el', included by [lsp-mode], provides minimal setting ;; for [Texlab], `lsp-latex.el' provides full features of [Texlab] -;; v5.13.1. +;; v5.19.0. ;; [lsp-mode]