From ff9dda159c2fe6f1c7c34460047b51b055dcc21d Mon Sep 17 00:00:00 2001 From: GitSquared Date: Wed, 26 Dec 2018 11:10:45 +0100 Subject: [PATCH] :children_crossing: Do not wait for terminal to start displaying fs #365 --- src/classes/filesystem.class.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/classes/filesystem.class.js b/src/classes/filesystem.class.js index 549a623..0281333 100644 --- a/src/classes/filesystem.class.js +++ b/src/classes/filesystem.class.js @@ -368,5 +368,13 @@ class FilesystemDisplay { } } }; + + // Automatically start indexing supposed beginning CWD + // See #365 + this.readFS(window.settings.cwd); } } + +module.exports = { + FilesystemDisplay +}; -- GitLab