Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion packages/repl/src/lib/Workspace.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,23 @@ export class Workspace {
if (matching_file) {
this.#select(matching_file as File);
} else {
this.#select(first);
// Try to select the first file in the file selector thing.
// The file selector lists files in the root directory after all files in
// other directories.
const top_file = files.filter(is_file).sort((a, b) => {
const in_root_dir = x => x.basename === x.name

if (in_root_dir(a) != in_root_dir(b)) {
return in_root_dir(a) - in_root_dir(b)
} else if (a.name < b.name) {
return -1
} else if (a.name > b.name) {
return 1
else {
return 0
}
})[0]
this.#select(top_file);
}

this.#files = files;
Expand Down
Loading