9 references to KeywordHighlighting
Microsoft.CodeAnalysis.EditorFeatures (2)
KeywordHighlighting\HighlighterViewTaggerProvider.cs (2)
47protected override ImmutableArray<IOption2> Options { get; } = ImmutableArray.Create<IOption2>(KeywordHighlightingOptionsStorage.KeywordHighlighting); 88if (!GlobalOptions.GetOption(KeywordHighlightingOptionsStorage.KeywordHighlighting, document.Project.Language))
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
KeywordHighlighting\AbstractKeywordHighlightingTests.vb (1)
32globalOptions.SetGlobalOption(KeywordHighlightingOptionsStorage.KeywordHighlighting, document.Project.Language, optionIsEnabled)
Microsoft.VisualStudio.LanguageServices.CSharp (3)
Options\AdvancedOptionPageControl.xaml.cs (1)
111BindToOption(EnableHighlightKeywords, KeywordHighlightingOptionsStorage.KeywordHighlighting, LanguageNames.CSharp);
Options\AutomationObject\AutomationObject.OnOff.cs (2)
41get { return GetBooleanOption(KeywordHighlightingOptionsStorage.KeywordHighlighting); } 42set { SetBooleanOption(KeywordHighlightingOptionsStorage.KeywordHighlighting, value); }
Microsoft.VisualStudio.LanguageServices.VisualBasic (3)
Options\AdvancedOptionPageControl.xaml.vb (1)
104BindToOption(EnableHighlightKeywords, KeywordHighlightingOptionsStorage.KeywordHighlighting, LanguageNames.VisualBasic)
Options\AutomationObject\AutomationObject.OnOff.vb (2)
66Return GetBooleanOption(KeywordHighlightingOptionsStorage.KeywordHighlighting) 69SetBooleanOption(KeywordHighlightingOptionsStorage.KeywordHighlighting, value)