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
Add poweshell.helpCompletion setting to control/disable feature (#1282)
* Add poweshell.helpCompletion setting to control/disable feature
Changing this setting does require a reload window.
Trigger sequence changed to just "##".
Fix#1228
* Rename triggerFinderLineComment field per PR review
"description": "Specifies the url of the GitHub project in which to generate bug reports."
449
449
},
450
+
"powershell.helpCompletion": {
451
+
"type": "string",
452
+
"enum": [
453
+
"Disabled",
454
+
"BlockComment",
455
+
"LineComment"
456
+
],
457
+
"default": "BlockComment",
458
+
"description": "Controls the comment-based help completion behavior triggered by typing '##'. Set the generated help style with 'BlockComment' or 'LineComment'. Disable the feature with 'Disabled'."
0 commit comments