7 references to AutomaticallyCompleteStatementOnSemicolon
Microsoft.CodeAnalysis.CSharp.EditorFeatures (2)
CompleteStatement\CompleteStatementCommandHandler.cs (1)
95
if (!_globalOptions.GetOption(CompleteStatementOptionsStorage.
AutomaticallyCompleteStatementOnSemicolon
))
ConvertNamespace\ConvertNamespaceCommandHandler.cs (1)
114
if (!_globalOptions.GetOption(CompleteStatementOptionsStorage.
AutomaticallyCompleteStatementOnSemicolon
))
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
CompleteStatement\CSharpCompleteStatementCommandHandlerTests.cs (1)
4252
globalOptions.SetGlobalOption(CompleteStatementOptionsStorage.
AutomaticallyCompleteStatementOnSemicolon
, false);
ConvertNamespace\ConvertNamespaceCommandHandlerTests.cs (1)
88
testState.Workspace.GlobalOptions.SetGlobalOption(CompleteStatementOptionsStorage.
AutomaticallyCompleteStatementOnSemicolon
, false);
Microsoft.VisualStudio.LanguageServices.CSharp (3)
Options\AutomationObject\AutomationObject.OnOff.cs (2)
137
get { return GetBooleanOption(CompleteStatementOptionsStorage.
AutomaticallyCompleteStatementOnSemicolon
); }
138
set { SetBooleanOption(CompleteStatementOptionsStorage.
AutomaticallyCompleteStatementOnSemicolon
, value); }
Options\IntelliSenseOptionPageControl.xaml.cs (1)
22
BindToOption(Automatically_complete_statement_on_semicolon, CompleteStatementOptionsStorage.
AutomaticallyCompleteStatementOnSemicolon
);