Skip to content

Commit abaaeed

Browse files
author
SlavaRa
committed
Аdds the ability to use a package name syntax to quickly select the path where the class will be moved.
1 parent dbd939d commit abaaeed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

External/Plugins/CodeRefactor/Controls/MoveDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void FillTree()
102102
if (search.Length > 0)
103103
{
104104
char separator = Path.DirectorySeparatorChar;
105-
string searchWord = search.Replace('\\', separator).Replace('/', separator);
105+
string searchWord = search.Replace('\\', separator).Replace('/', separator).Replace('.', separator);
106106
int searchLength = search.Length;
107107
classpaths = classpaths.FindAll(path =>
108108
{

0 commit comments

Comments
 (0)