Adding a custom Views folder to the search path?

Hi, I have a few special views that does not reside in the /Views Folder but in the /SpecialViews folder, I know that I can hardcode the View uri when outputting the view but I would like to add the patch to the view search tree so that I can use the same logic allover.

By default it looks in:

~/Views/SectionTabs/Index.aspx
~/Views/SectionTabs/Index.ascx
~/Views/Shared/Index.aspx
~/Views/Shared/Index.ascx
~/Views/SectionTabs/Index.cshtml
~/Views/SectionTabs/Index.vbhtml
~/Views/Shared/Index.cshtml
~/Views/Shared/Index.vbhtml

how would I go about adding:
~/SpecialViews/~classname~/Index.cshtml

Thanks!

Litium version: 6.2

Litium does not use any own view engine so you can follow any example that you can find about how you can change this.

I found this stackoverflow answer that I think is doing what you want https://stackoverflow.com/a/7557275