From 93f59f0df24e31d565ca68c7d9a49a97fc51c283 Mon Sep 17 00:00:00 2001 From: chris380 Date: Tue, 12 Apr 2022 15:11:38 +0200 Subject: [PATCH] formatting updated --- src/Terminal/determineAllPossibilitiesForTabCompletion.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Terminal/determineAllPossibilitiesForTabCompletion.ts b/src/Terminal/determineAllPossibilitiesForTabCompletion.ts index cb0b65f5c..e7a926d33 100644 --- a/src/Terminal/determineAllPossibilitiesForTabCompletion.ts +++ b/src/Terminal/determineAllPossibilitiesForTabCompletion.ts @@ -242,8 +242,11 @@ export async function determineAllPossibilitiesForTabCompletion( // All directly connected and backdoored servers are reachable return GetAllServers() - .filter(server => currServ.serversOnNetwork.includes(server.hostname) || (server instanceof Server && server.backdoorInstalled)) - .map(server => server.hostname); + .filter( + (server) => + currServ.serversOnNetwork.includes(server.hostname) || (server instanceof Server && server.backdoorInstalled), + ) + .map((server) => server.hostname); } if (isCommand("nano") || isCommand("vim")) {