From 791d9a3e7bd1b373976a514cf230a3ba8e6b142e Mon Sep 17 00:00:00 2001 From: Jimmy Yuen Ho Wong Date: Sat, 21 Dec 2024 16:17:17 +0000 Subject: [PATCH] Fix typescript custom groups (#4638) --- clients/lsp-javascript.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/clients/lsp-javascript.el b/clients/lsp-javascript.el index 3b0e076be1b..bc1383b03a4 100644 --- a/clients/lsp-javascript.el +++ b/clients/lsp-javascript.el @@ -157,7 +157,7 @@ See https://github.com/typescript-language-server/typescript-language-server#ini (defcustom lsp-typescript-tsdk nil "Specifies the folder path containing tsserver and lib*.d.ts files to use." :type '(repeat string) - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-typescript-disable-automatic-type-acquisition nil @@ -165,7 +165,7 @@ See https://github.com/typescript-language-server/typescript-language-server#ini Automatic type acquisition fetches `@types` packages from npm to improve IntelliSense for external libraries." :type 'boolean - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-typescript-npm nil @@ -173,32 +173,32 @@ IntelliSense for external libraries." Requires using TypeScript 2.3.4 or newer in the workspace." :type '(repeat string) - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-typescript-check-npm-is-installed t "Check if NPM is installed for Automatic Type Acquisition." :type 'boolean - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-javascript-references-code-lens-enabled nil "Enable/disable references CodeLens in JavaScript files." :type 'boolean - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-typescript-references-code-lens-enabled nil "Enable/disable references CodeLens in TypeScript files." :type 'boolean - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-typescript-implementations-code-lens-enabled nil "Enable/disable implementations CodeLens. This CodeLens shows the implementers of an interface." :type 'boolean - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-typescript-tsserver-log "off" @@ -211,7 +211,7 @@ from your project." (const "terse") (const "normal") (const "verbose")) - :group 'lsp-vetur + :group 'lsp-typescript :package-version '(lsp-mode . "6.1")) (defcustom lsp-typescript-tsserver-plugin-paths nil