6 references to BlockCommentEditingOptionsStorage
Microsoft.CodeAnalysis.CSharp.EditorFeatures (2)
BlockCommentEditing\BlockCommentEditingCommandHandler.cs (1)
63
if (!_editorOptionsService.GlobalOptions.GetOption(
BlockCommentEditingOptionsStorage
.AutoInsertBlockCommentStartString, LanguageNames.CSharp))
BlockCommentEditing\CloseBlockCommentCommandHandler.cs (1)
48
if (_editorOptionsService.GlobalOptions.GetOption(
BlockCommentEditingOptionsStorage
.AutoInsertBlockCommentStartString, LanguageNames.CSharp) &&
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
BlockCommentEditing\CloseBlockCommentTests.cs (1)
218
globalOptions.SetGlobalOption(
BlockCommentEditingOptionsStorage
.AutoInsertBlockCommentStartString, LanguageNames.CSharp, false);
Microsoft.VisualStudio.LanguageServices.CSharp (3)
Options\AdvancedOptionPageControl.xaml.cs (1)
109
BindToOption(InsertAsteriskAtTheStartOfNewLinesWhenWritingBlockComments,
BlockCommentEditingOptionsStorage
.AutoInsertBlockCommentStartString, LanguageNames.CSharp);
Options\AutomationObject\AutomationObject.OnOff.cs (2)
23
get { return GetBooleanOption(
BlockCommentEditingOptionsStorage
.AutoInsertBlockCommentStartString); }
24
set { SetBooleanOption(
BlockCommentEditingOptionsStorage
.AutoInsertBlockCommentStartString, value); }