Skip to content

Commit 791d9a3

Browse files
authored
Fix typescript custom groups (#4638)
1 parent fda77f7 commit 791d9a3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

clients/lsp-javascript.el

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,48 +157,48 @@ See https://github.com/typescript-language-server/typescript-language-server#ini
157157
(defcustom lsp-typescript-tsdk nil
158158
"Specifies the folder path containing tsserver and lib*.d.ts files to use."
159159
:type '(repeat string)
160-
:group 'lsp-vetur
160+
:group 'lsp-typescript
161161
:package-version '(lsp-mode . "6.1"))
162162

163163
(defcustom lsp-typescript-disable-automatic-type-acquisition nil
164164
"Disables automatic type acquisition.
165165
Automatic type acquisition fetches `@types` packages from npm to improve
166166
IntelliSense for external libraries."
167167
:type 'boolean
168-
:group 'lsp-vetur
168+
:group 'lsp-typescript
169169
:package-version '(lsp-mode . "6.1"))
170170

171171
(defcustom lsp-typescript-npm nil
172172
"Specifies the path to the NPM exec used for Automatic Type Acquisition.
173173
Requires using TypeScript 2.3.4 or newer in the
174174
workspace."
175175
:type '(repeat string)
176-
:group 'lsp-vetur
176+
:group 'lsp-typescript
177177
:package-version '(lsp-mode . "6.1"))
178178

179179
(defcustom lsp-typescript-check-npm-is-installed t
180180
"Check if NPM is installed for Automatic Type Acquisition."
181181
:type 'boolean
182-
:group 'lsp-vetur
182+
:group 'lsp-typescript
183183
:package-version '(lsp-mode . "6.1"))
184184

185185
(defcustom lsp-javascript-references-code-lens-enabled nil
186186
"Enable/disable references CodeLens in JavaScript files."
187187
:type 'boolean
188-
:group 'lsp-vetur
188+
:group 'lsp-typescript
189189
:package-version '(lsp-mode . "6.1"))
190190

191191
(defcustom lsp-typescript-references-code-lens-enabled nil
192192
"Enable/disable references CodeLens in TypeScript files."
193193
:type 'boolean
194-
:group 'lsp-vetur
194+
:group 'lsp-typescript
195195
:package-version '(lsp-mode . "6.1"))
196196

197197
(defcustom lsp-typescript-implementations-code-lens-enabled nil
198198
"Enable/disable implementations CodeLens.
199199
This CodeLens shows the implementers of an interface."
200200
:type 'boolean
201-
:group 'lsp-vetur
201+
:group 'lsp-typescript
202202
:package-version '(lsp-mode . "6.1"))
203203

204204
(defcustom lsp-typescript-tsserver-log "off"
@@ -211,7 +211,7 @@ from your project."
211211
(const "terse")
212212
(const "normal")
213213
(const "verbose"))
214-
:group 'lsp-vetur
214+
:group 'lsp-typescript
215215
:package-version '(lsp-mode . "6.1"))
216216

217217
(defcustom lsp-typescript-tsserver-plugin-paths nil

0 commit comments

Comments
 (0)