When tab title includes a directory and this directory has dot in the name, for example Folder.1/Class1.cs, then the default title splitting regex (?<Name>.+?)(?<Ext>\..+) splits it as Folder and .1/Class1.cs. A better regex for this case would be (?<Name>(.*/)?.+?)(?<Ext>\..+) that results in Fodler.1/Class1 and .cs. This regex is the new default starting from the next Tabs Studio version.
August 17, 2009
Dot in directory name
Comments Off on Dot in directory name