mirror of https://github.com/buggins/dlangide.git
sort workspace items - folders first - close #250
This commit is contained in:
parent
1f34e7dc6c
commit
9f63bb0603
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
||||||
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dlangui": "==0.9.113",
|
"dlangui": "==0.9.114",
|
||||||
"dcd": "~>0.9.1"
|
"dcd": "~>0.9.1"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -239,6 +239,8 @@ class NewFileDlg : Dialog {
|
||||||
}
|
}
|
||||||
_edModuleName.text = toUTF32(m);
|
_edModuleName.text = toUTF32(m);
|
||||||
_packageName = m;
|
_packageName = m;
|
||||||
|
if (_currentTemplate.kind == FileKind.PACKAGE && _packageName.length == 0)
|
||||||
|
return setError("Package should be located in subdirectory");
|
||||||
} else {
|
} else {
|
||||||
string projectPath = _project.dir;
|
string projectPath = _project.dir;
|
||||||
if (!isSubdirOf(_location, projectPath))
|
if (!isSubdirOf(_location, projectPath))
|
||||||
|
@ -345,4 +347,3 @@ class ProjectTemplate {
|
||||||
this.kind = kind;
|
this.kind = kind;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -202,6 +202,17 @@ class ProjectFolder : ProjectItem {
|
||||||
_children.remove(i);
|
_children.remove(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
sortItems();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// predicate for sorting project items
|
||||||
|
static bool compareProjectItemsLess(ProjectItem item1, ProjectItem item2) {
|
||||||
|
return ((item1.isFolder && !item2.isFolder) || ((item1.isFolder == item2.isFolder) && (item1.name < item2.name)));
|
||||||
|
}
|
||||||
|
|
||||||
|
void sortItems() {
|
||||||
|
import std.algorithm.sorting : sort;
|
||||||
|
sort!compareProjectItemsLess(_children.asArray);
|
||||||
}
|
}
|
||||||
|
|
||||||
string relativeToAbsolutePath(string path) {
|
string relativeToAbsolutePath(string path) {
|
||||||
|
@ -218,6 +229,7 @@ class ProjectFolder : ProjectItem {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Project source file
|
/// Project source file
|
||||||
class ProjectSourceFile : ProjectItem {
|
class ProjectSourceFile : ProjectItem {
|
||||||
this(string filename) {
|
this(string filename) {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.7.66
|
v0.7.67
|
Loading…
Reference in New Issue