We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e906a0b commit a8d13a8Copy full SHA for a8d13a8
src/toolkit/Community.VisualStudio.Toolkit.Shared/LanguageService/LanguageBase.cs
@@ -91,22 +91,6 @@ public override LanguagePreferences GetLanguagePreferences()
91
return _preferences;
92
}
93
94
- /// <inheritdoc/>
95
- public override ViewFilter CreateViewFilter(CodeWindowManager mgr, IVsTextView newView)
96
- {
97
- return new SimpleViewFiter(mgr, newView);
98
- }
99
-
100
- private class SimpleViewFiter : ViewFilter
101
102
- public SimpleViewFiter(CodeWindowManager mgr, IVsTextView view) : base(mgr, view)
103
- { }
104
105
- // Do this so the language service won't swallow the formatting commands
106
- public override bool CanReformat() => false;
107
108
109
110
/// <inheritdoc/>
111
public override IScanner GetScanner(IVsTextLines buffer)
112
{
0 commit comments