Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
🔥 Do not follow tabs when running detached fsDisp
Browse files Browse the repository at this point in the history
Close #432
  • Loading branch information
GitSquared committed Feb 19, 2019
1 parent d9b9afd commit 283798d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/classes/filesystem.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ class FilesystemDisplay {
};

this.followTab = () => {
// Don't follow tabs when running in detached mode, see #432
if (this._noTracking) return false;

let num = window.currentTerm;

window.term[num].oncwdchange = cwd => {
Expand Down

0 comments on commit 283798d

Please sign in to comment.