File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
src/PowerShellEditorServices.Protocol Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public class CommentHelpRequestParams
22
22
{
23
23
public string DocumentUri { get ; set ; }
24
24
public Position TriggerPosition { get ; set ; }
25
+ public bool BlockComment { get ; set ; }
25
26
}
26
27
}
27
28
Original file line number Diff line number Diff line change @@ -1096,6 +1096,7 @@ protected async Task HandleCommentHelpRequest(
1096
1096
var ruleSettings = new Hashtable ( ) ;
1097
1097
ruleSettings . Add ( "ExportedOnly" , false ) ;
1098
1098
ruleSettings . Add ( "Enable" , true ) ;
1099
+ ruleSettings . Add ( "BlockComment" , requestParams . BlockComment ) ;
1099
1100
settings . Add ( "PSProvideCommentHelp" , ruleSettings ) ;
1100
1101
var pssaSettings = EditorSession . AnalysisService . GetPSSASettingsHashtable ( settings ) ;
1101
1102
You can’t perform that action at this time.
0 commit comments