You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/configurationType.ts
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -358,6 +358,15 @@ export type Configuration = {
358
358
* @default true
359
359
*/
360
360
enableMethodSnippets: boolean
361
+
/**
362
+
* Wether add insert text and detail to every function completion on each suggest trigger (instead of expanding method snippet after completion accept).
363
+
* This way you can enable support for method snippets in Vue files.
364
+
* `methodSnippets.replaceArguments` isn't supported for now.
365
+
* This is not enabled by default as it might be really slow in some cases.
@@ -540,6 +549,12 @@ export type Configuration = {
540
549
* @default false
541
550
*/
542
551
'experiments.changeKindToFunction': boolean
552
+
/**
553
+
* Use workaround method for inserting name of TypeScript suggestion.
554
+
* If you move to next suggestion and then to previous, and then run *insert name of completion* via keybinding, name of **last resolved** completion will be inserted, so you might prefer to enable this setting. Also it makes this feature work in Vue.
0 commit comments