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