Created
October 19, 2008 00:14
-
-
Save jagregory/17751 to your computer and use it in GitHub Desktop.
SmartIndentationBlog.ViewFilterSimple
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BooViewFilter : ViewFilter | |
{ | |
public BooViewFilter(CodeWindowManager mgr, IVsTextView view) : base(mgr, view) | |
{} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public override ViewFilter CreateViewFilter(CodeWindowManager mgr, IVsTextView newView) | |
{ | |
return new BooViewFilter(mgr, newView); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment